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

@media (max-width: 576px) {
    .title-line-1 { font-size: 22px; letter-spacing: 0; }
    .title-line-2 { font-size: 34px; letter-spacing: 0; }
    .menu-title, .chef-title { font-size: 28px; }
    .chef-description { font-size: 18px; }
    .booking-widget { padding: 20px; }
    .hero-tagline { font-size: 12px; }
}

@media (max-width: 400px) {
    .title-line-1 { font-size: 22px; }
    .title-line-2 { font-size: 34px; }
}

:root {
    --gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Media defaults */
img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-line-1 {
    display: block;
}

.logo-line-2 {
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

/* Mobile nav toggle (hidden by default) */
.nav-toggle {
    display: none;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 12px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

/* Collapsible nav base (desktop default stays inline) */
.nav[data-collapsible] {
    transition: max-height 0.3s ease;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a.active {
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 5px;
}

.nav a:hover {
    color: var(--gold);
}

.btn-book-header {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-header:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}

.page-hero {
    min-height: 40vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-hero .hero-content {
    padding-bottom: 48px;
}

.hero-text {
    align-self: flex-start;
    max-width: 600px;
    margin-bottom: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.title-line-1 {
    font-size: 56px;
    letter-spacing: 3px;
    display: block;
}

.title-line-2 {
    font-size: 96px;
    letter-spacing: 3px;
    display: block;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Booking Widget */
.booking-widget {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    background-color: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    padding: 30px 40px;
    margin-top: 50px;
    align-self: flex-start;
    width: min(100%, 900px);
    max-width: 900px;
}

.booking-widget-centered {
    margin: 0 auto;
    margin-top: 0;
    align-self: stretch;
    max-width: 720px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 160px;
}

.booking-field label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-field .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-field input,
.booking-field select {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
    color: var(--text-light);
    padding: 12px 40px 12px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-width: 120px;
    appearance: none;
    cursor: pointer;
}

.booking-field input::placeholder {
    color: var(--text-gray);
}

.booking-field select {
    cursor: pointer;
}

.booking-field .icon {
    position: absolute;
    right: 12px;
    color: var(--gold);
    pointer-events: none;
    font-size: 14px;
}

.btn-find-table {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--dark-bg);
    padding: 12px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
    margin-top: 0;
    align-self: flex-end;
}

.btn-find-table:hover {
    background-color: rgba(212, 175, 55, 0.8);
    border-color: rgba(212, 175, 55, 0.8);
}

/* Chef Section */
.chef-section {
    padding: 100px 0;
    background-color: #000000;
}

.chef-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.chef-image-wrapper {
    flex: 0 0 400px;
    position: relative;
}

.chef-image {
    width: 100%;
    height: auto;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chef-text {
    flex: 1;
}

.chef-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chef-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

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

.menu-item {
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.menu-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.menu-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.dish-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 300;
}

.dish-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.btn-view-menu {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-view-menu:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-address,
.footer-phone,
.footer-social {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-social {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    /* Make header participate in flow on tablets to avoid overlaying hero */
    .header {
        position: relative;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(6px);
        padding: 14px 0;
    }
    .title-line-1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .title-line-2 {
        font-size: 52px;
        letter-spacing: 2px;
    }
    
    .chef-content {
        flex-direction: column;
        text-align: center;
    }
    
    .chef-image-wrapper {
        flex: 0 0 auto;
        max-width: 400px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .booking-widget {
        flex-wrap: wrap;
        padding: 24px;
    }
    .hero-content { padding: 100px 24px 40px; }
}

@media (max-width: 768px) {
    .header {
        position: relative;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(6px);
        padding: 12px 0;
        z-index: 2;
    }
    .header-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        padding: 0 20px;
        align-items: center;
    }
    .logo {
        min-width: 0;
    }
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2;
        justify-self: end;
    }
    /* Collapse nav into a vertical panel */
    .nav[data-collapsible] {
        grid-column: 1 / -1;
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        display: none;
    }
    .nav[data-collapsible].open {
        display: flex;
    }
    .nav[data-collapsible] a {
        display: block;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    /* Make header CTA span width and stack after nav */
    .header-content > .btn-book-header {
        grid-column: 1 / -1;
        align-self: stretch;
        width: 100%;
        margin-top: 8px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .title-line-1 { font-size: 26px; letter-spacing: 1px; }
    .title-line-2 { font-size: 40px; letter-spacing: 1px; }
    
    .hero-tagline {
        font-size: 14px;
    }
    .hero-content { padding: 140px 16px 32px; }
    .page-hero .hero-content { padding-top: 96px; }
    .hero-text { text-align: center; align-self: stretch; }
    .hero-title { line-height: 1.05; word-break: break-word; hyphens: auto; }
    
    .booking-widget {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        margin-top: 24px;
    }
    
    .booking-field {
        width: 100%;
    }
    
    .booking-field input,
    .booking-field select {
        width: 100%;
    }
    
    .btn-find-table {
        width: 100%;
        margin-top: 0;
    }
    
    .chef-title,
    .menu-title {
        font-size: 36px;
    }
    
    .chef-description {
        font-size: 20px;
    }

    .footer-address,
    .footer-phone,
    .footer-social {
        font-size: 13px;
    }
}
