/* ============================================
   PIZZA — Luxe / Chic Theme
   ============================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E0C068;
    --dark: #0A0A0A;
    --dark-soft: #141414;
    --gray: #888;
    --gray-light: #bbb;
    --white: #fff;
    --bg: #0A0A0A;
    --card-bg: #141414;
    --border: #222;
    --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- NAVBAR ---- */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10,10,10,0.95);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1400') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 24px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--gold);
    color: var(--dark);
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

/* ---- SECTIONS COMMON ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.separator {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.separator.left {
    margin: 0 0 24px 0;
}

/* ---- MENU ---- */
.section-menu {
    padding: 100px 5%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: var(--gold);
}

.menu-img-wrap {
    overflow: hidden;
    height: 240px;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-img-wrap img {
    transform: scale(1.08);
}

.menu-info {
    padding: 28px;
}

.menu-info h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.menu-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.price {
    font-size: 22px;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ---- ABOUT ---- */
.section-about {
    padding: 100px 5%;
    background: var(--dark-soft);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text .section-tag {
    display: block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ---- REASSURANCE ---- */
.section-reassurance {
    padding: 80px 5%;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.reassurance-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reassurance-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201,168,76,0.1);
}

.reassurance-icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.reassurance-item h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.reassurance-item p {
    font-size: 13px;
    color: var(--gray);
}

/* ---- GALLERY ---- */
.section-gallery {
    padding: 100px 5%;
    background: var(--dark-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ---- CTA ---- */
.section-cta {
    padding: 120px 5%;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400') center/cover no-repeat fixed;
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 36px;
}

/* ---- FOOTER ---- */
footer {
    background: var(--dark-soft);
    border-top: 1px solid var(--border);
    padding: 60px 5% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.logo-footer {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; cursor: default; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: revealFallback 0.8s ease 0.5s forwards;
}

/* ---- CONTACT PAGE ---- */
.page-hero {
    padding: 160px 5% 80px;
    text-align: center;
    background: var(--dark-soft);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--gray);
    font-size: 16px;
}

.contact-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-info-card .icon {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* ---- ADMIN ---- */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 20px;
}

.admin-login-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-card h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.admin-login-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.admin-login-card input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.admin-login-card input:focus {
    border-color: var(--gold);
}

.admin-login-card button {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-login-card button:hover {
    background: var(--gold-light);
}

.admin-panel {
    min-height: 100vh;
    padding: 40px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.admin-panel.hidden { display: none; }

.admin-panel h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.admin-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.admin-card p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
}

.admin-card label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 16px;
}

.admin-card input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 14px;
    border-radius: 8px;
    outline: none;
}

.admin-card input:focus {
    border-color: var(--gold);
}

.btn-domain {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-domain:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.admin-back {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.admin-back:hover {
    color: var(--gold);
}

.error-msg {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-img img { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 100px 40px;
        gap: 28px;
        transition: right 0.4s ease;
        backdrop-filter: blur(20px);
    }

    .nav-links.open { right: 0; }

    .hamburger { display: flex; }

    .hero h1 { font-size: 38px; }
    .hero p { font-size: 15px; }
    .hero-badge { font-size: 10px; padding: 6px 16px; }

    .section-header h2 { font-size: 30px; }

    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-item img { height: 200px; }

    .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .reassurance-item { padding: 24px 16px; }

    .about-text h2 { font-size: 30px; }
    .about-stats { gap: 20px; }
    .stat-number { font-size: 28px; }

    .footer-container { grid-template-columns: 1fr; }

    .page-hero h1 { font-size: 32px; }
    .cta-content h2 { font-size: 28px; }

    .btn-hero { padding: 14px 36px; }
}

@media (max-width: 480px) {
    .nav-container { padding: 16px 20px; }
    .hero h1 { font-size: 30px; }
    .reassurance-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 220px; }
}