/* =====================================================
   LUXE DINING DESIGN SYSTEM & GLOBALS
   ===================================================== */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121216;
    --primary: #c5a880;
    --primary-hover: #b09168;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(197, 168, 128, 0.2);
    --border-focus: rgba(197, 168, 128, 0.6);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================================================
   TYPOGRAPHY & BUTTONS
   ===================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.03em;
}

span.gradient-text,
h1 span,
h2 span {
    color: var(--primary);
    font-style: italic;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
    font-weight: 300;
    margin-left: 0.3rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link--btn {
    border: 1px solid var(--primary);
    padding: 0.6rem 1.5rem;
    color: var(--primary);
}

.nav-link--btn:hover {
    background-color: var(--primary);
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
        border-bottom: 1px solid var(--border);
    }
    
    .nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    background: radial-gradient(circle at center, #1b1b22 0%, var(--bg-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,12,0.4) 0%, rgba(10,10,12,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 120px;
        padding-bottom: 4rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .scroll-down {
        display: none !important;
    }
}

.scroll-down span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scrollAnimation 1.6s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
}

.gold-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--primary);
    z-index: 1;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.image-frame:hover .about-img {
    transform: scale(1.04);
}

/* =====================================================
   MENU SECTION
   ===================================================== */
.menu-section {
    padding: 8rem 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.menu-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.menu-item {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.15);
    padding-bottom: 1.5rem;
    align-items: center;
}

.menu-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-item:hover .menu-item-img {
    transform: scale(1.08) rotate(2deg);
    border-color: var(--primary);
}

.menu-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-item h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 500;
}

.menu-item-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* =====================================================
   BOOKING SECTION
   ===================================================== */
.booking-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,1) 100%), 
                radial-gradient(circle at 10% 20%, rgba(197,168,128,0.05) 0%, transparent 40%);
    position: relative;
}

.booking-container {
    display: flex;
    justify-content: center;
}

.booking-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4rem;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .booking-card {
        padding: 2.5rem 1.5rem;
    }
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 2rem;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select {
    background-color: #17171d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background-color: #1a1a22;
}

.booking-success {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.booking-success svg {
    color: var(--primary);
}

.booking-success h3 {
    font-size: 2rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background-color: #060608;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.lang-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .lang-toggle {
        margin-top: 0.5rem;
        justify-content: center;
    }
}
