@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --gold: #C8A96E;
    --gold-light: #E4D4A8;
    --dark: #0D0D0D;
    --dark2: #1A1A1A;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --gray: #999;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
}

.serif { font-family: 'Playfair Display', serif; }

nav {
    position: fixed;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.btn-reserve {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-reserve:hover {
    background: var(--gold);
    color: var(--dark);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.8) 100%),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.section {
    padding: 120px 60px;
}

.section-dark { background: var(--dark); }
.section-cream { background: var(--cream); color: var(--dark); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?w=800') center/cover;
    border-radius: 4px;
}

.section-tag {
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.about-text .cream-text { color: #666; }

.menu-section {
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.menu-category {
    text-align: left;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.cream-section .menu-category h3 {
    border-bottom-color: rgba(0,0,0,0.1);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
}

.menu-item-name {
    font-size: 1rem;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gold);
    margin: 0 12px;
    opacity: 0.4;
}

.menu-item-price {
    color: var(--gold);
    font-weight: 600;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

.cream-section .menu-item-desc { color: #888; }

.chefs-section {
    background: var(--dark2);
    text-align: center;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.chef-card {
    text-align: center;
}

.chef-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--dark2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.chef-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.chef-card p {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.gallery-item {
    height: 300px;
    background: var(--dark2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }

.reservation-section {
    text-align: center;
    background: linear-gradient(180deg, var(--dark2), var(--dark));
}

.res-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.res-info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.res-info-item p {
    color: var(--gray);
    line-height: 1.8;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 40px;
}
.btn-gold:hover {
    background: var(--gold-light);
}

footer {
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

footer .logo { font-size: 2rem; margin-bottom: 20px; }

footer p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
