/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
   :root {
    /* Colors */
    --bg-dark: #0b090a;
    --bg-card: #161618;
    --bg-card-hover: #1e1e20;
    
    --gold: #d4af37;
    --gold-light: #e6c875;
    --gold-dark: #a8813b;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 50% 0%, #1a1714 0%, var(--bg-dark) 50%);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding);
}

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

.gold-text {
    color: var(--gold);
}

.font-serif {
    font-family: var(--font-serif);
}

.italic {
    font-style: italic;
}

.dark-bg {
    background-color: #080708;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-badge {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
}

.text-2xl {
    font-size: 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    z-index: -1;
    transition: opacity var(--transition-base);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.glass-nav.scrolled {
    background: rgba(11, 9, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.lang-switch a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--gold);
}

.lang-switch .divider {
    color: var(--border-color);
}

.mobile-lang-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.mobile-lang-switch a {
    color: var(--text-secondary);
}

.mobile-lang-switch a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 9, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 40px 24px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-links a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,9,10,0.6) 0%, rgba(11,9,10,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.25rem;
    color: #e4e4e7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-wrapper {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.main-img {
    top: 0;
    right: 0;
    width: 80%;
    height: 85%;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.sub-img {
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    z-index: 2;
    border: 4px solid var(--bg-dark);
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-btn:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 500;
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition-slow);
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menu Grid Layouts */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.thali-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Menu Cards (for Thali & Breakfast) */
.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition-slow);
}

.menu-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 15px rgba(212,175,55,0.1);
}

.menu-card.premium {
    background: linear-gradient(180deg, #1c1a17 0%, var(--bg-card) 100%);
    border-color: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.menu-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.menu-card-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--gold);
}

.price {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.25rem;
}

.menu-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.menu-list, .menu-list-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #e4e4e7;
}

.menu-list li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.8rem;
}

.menu-list-simple li {
    position: relative;
    padding-left: 16px;
    color: #e4e4e7;
}

.menu-list-simple li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Menu List Items (for Sweets & Drinks) */
.menu-column {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.menu-category-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    border-bottom: 1px dotted var(--border-color);
    z-index: 1;
}

.item-name {
    background: var(--bg-card);
    padding-right: 8px;
    z-index: 2;
    font-weight: 500;
    color: #e4e4e7;
}

.item-price {
    background: var(--bg-card);
    padding-left: 8px;
    z-index: 2;
    font-weight: 500;
    color: var(--gold);
}

.menu-item-separator {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

.friday-special {
    margin-top: 32px;
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
}

.friday-special h4 {
    margin: 0;
    font-size: 1.25rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
    transform: scale(0.5);
    transition: transform var(--transition-slow);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================================================
   Stats / Reviews
   ========================================================================== */
.stats-section {
    background: linear-gradient(rgba(11,9,10,0.9), rgba(11,9,10,0.9)), url('assets/images/restaurant-exterior.jpg') center/cover fixed;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
}

.stats-score {
    font-size: 4rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 8px;
}

.stats-score span {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.4);
}

.form-success {
    margin-top: 16px;
    padding: 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    border-radius: 4px;
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #050405;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 12px;
}

.footer-links p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform var(--transition-slow);
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color var(--transition-base);
}

.lightbox-close:hover {
    color: var(--gold);
}

/* ==========================================================================
   Animations & Scroll Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 500px;
        order: -1;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .nav-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .menu-tabs {
        flex-direction: row;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .tab-btn {
        width: auto;
        white-space: nowrap;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
}
