/* ===== CHICKEN — Luxe / Chic ===== */
:root {
    --gold: #C5A46D;
    --gold-light: #D4B97E;
    --dark: #1A1A1A;
    --darker: #111;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --gray: #888;
    --light-gray: #F5F3EF;
    --text: #333;
    --text-light: #666;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.nav-links {
    display: flex; list-style: none; gap: 40px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 13px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none; cursor: pointer; flex-direction: column;
    gap: 6px; width: 28px; z-index: 1001;
}

.hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--white); transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?w=1400') center/cover no-repeat;
    text-align: center; color: var(--white);
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 20px; }

.hero-label {
    display: inline-block;
    font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    border: 1px solid var(--gold); padding: 8px 24px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 18px; line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; font-family: 'Lato', sans-serif;
    cursor: pointer; transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gold); color: var(--dark);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; justify-content: center; }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--gold); animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
    display: inline-block;
    font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
    font-family: 'Lato', sans-serif; font-weight: 700;
}

.section-header h2, .about-text h2, .contact-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark); margin-bottom: 16px;
}

.section-line {
    width: 60px; height: 2px; background: var(--gold); margin: 0 auto;
}

.section-line.left { margin: 0; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 120px 0; background: var(--cream); }

.menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.menu-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.menu-card-img { position: relative; overflow: hidden; height: 220px; }

.menu-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-card-body { padding: 24px; }

.menu-card-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 12px;
}

.menu-card-top h3 { font-size: 20px; color: var(--dark); }

.price {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--gold);
    font-weight: 600; white-space: nowrap;
}

.menu-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 120px 0; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.about-img { position: relative; }

.about-img img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

.about-img::before {
    content: ''; position: absolute; top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold); border-radius: 16px;
    z-index: -1;
}

.about-text .section-label { display: block; margin-bottom: 12px; }

.about-text p { color: var(--text-light); margin-top: 24px; font-size: 16px; }

.about-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 40px; border-top: 1px solid #eee;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700;
    color: var(--gold);
}

.stat-label { font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ===== REASSURANCE ===== */
.reassurance-section { padding: 100px 0; background: var(--dark); }

.reassurance-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.reassurance-item {
    text-align: center; padding: 40px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.reassurance-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }

.reassurance-icon { margin-bottom: 20px; color: var(--gold); }

.reassurance-item h3 {
    font-size: 18px; color: var(--white); margin-bottom: 8px;
    font-family: 'Lato', sans-serif; font-weight: 700;
}

.reassurance-item p { font-size: 13px; color: var(--gray); }

/* ===== GALLERY ===== */
.gallery-section { padding: 120px 0; background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 12px; height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0); transition: background 0.3s ease;
}

.gallery-item:hover::after { background: rgba(0,0,0,0.2); }

/* ===== CONTACT ===== */
.contact-section { padding: 120px 0; }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: flex-start;
}

.contact-info .section-label { display: block; margin-bottom: 12px; }

.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(197,164,109,0.1);
    color: var(--gold); flex-shrink: 0;
}

.contact-item h4 { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }

.contact-item p { font-size: 14px; color: var(--text-light); }

.map-container { margin-top: 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.contact-form-wrap {
    background: var(--light-gray);
    padding: 48px; border-radius: 16px;
}

.contact-form-wrap h3 {
    font-size: 28px; margin-bottom: 32px; color: var(--dark);
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block; font-size: 12px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gray);
    margin-bottom: 8px; font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 1px solid #ddd; border-radius: 8px;
    font-family: 'Lato', sans-serif; font-size: 15px;
    background: var(--white); color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: var(--darker); color: rgba(255,255,255,0.7); padding: 80px 0 0; }

.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { font-size: 24px; display: inline-block; margin-bottom: 16px; }

.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 280px; }

.footer h4 {
    font-family: 'Lato', sans-serif;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--white); margin-bottom: 24px; font-weight: 700;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 12px; font-size: 14px; }

.footer ul li a { transition: color 0.3s ease; }
.footer ul li a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center; padding: 24px 0;
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ===== 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 ease;
    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: 20px;
    color: #fff; font-size: 36px; cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: revealFallback 0.8s ease 0.5s forwards;
}

.reveal.visible {
    opacity: 1; transform: translateY(0);
    animation: none;
}

@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
        height: 100vh; background: var(--dark);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 32px; transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.open { right: 0; }

    .nav-links a { font-size: 16px; letter-spacing: 3px; }

    .hamburger { display: flex; }

    .hero { min-height: 600px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { padding: 14px 28px; font-size: 11px; }

    .menu-section, .about-section, .gallery-section, .contact-section { padding: 80px 0; }
    .reassurance-section { padding: 60px 0; }

    .menu-grid { grid-template-columns: 1fr; }

    .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .reassurance-item { padding: 24px 16px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery-item { height: 180px; }

    .contact-form-wrap { padding: 32px 24px; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .section-header h2, .about-text h2, .contact-info h2 { font-size: 28px; }

    .about-stats { gap: 20px; }
    .stat-num { font-size: 28px; }
}

@media (max-width: 480px) {
    .reassurance-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
}
