/* Base and Tokens */
:root {
    /* Color Palette */
    --color-dark: #0f0f0f;
    --color-dark-surface: #1a1a1a;
    --color-dark-surface-2: #242424;
    
    --color-white: #ffffff;
    --color-light: #f5f5f5;
    --color-text: #cccccc;
    
    /* Gold Theme Colors */
    --color-gold-light: #f1e09c;
    --color-gold: #d4af37;
    --color-gold-dark: #aa7814;
    
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Borders */
    --color-border: rgba(255, 255, 255, 0.05);
    
    /* Hero Overlays */
    --hero-gradient: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 1));
}

/* Light Theme Overrides */
body.light-theme {
    --color-dark: #fcfcfc;
    --color-dark-surface: #f0f0f0;
    --color-dark-surface-2: #ffffff;
    --color-white: #121212;
    --color-light: #242424;
    --color-text: #444444;
    --color-border: rgba(0, 0, 0, 0.1);
    --hero-gradient: linear-gradient(to bottom, rgba(252, 252, 252, 0.8), rgba(252, 252, 252, 1));
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
}

.center {
    text-align: center;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Typography */
.section-subtitle {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.section-header.center .section-subtitle {
    justify-content: center;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 0 15px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border: none;
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-white);
    opacity: 0;
    transition: var(--trans-fast);
    z-index: -1;
}

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

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--trans-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    font-weight: 600;
}

.logo span {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
}

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

.nav-link {
    color: var(--color-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--trans-fast);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.phone-link i {
    color: var(--color-gold);
}

.menu-toggle {
    display: block; /* Always show toggle for sidebar access */
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--trans-fast);
}

.menu-toggle:hover {
    color: var(--color-gold);
}

/* Sidebar Drawer */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--color-dark);
    z-index: 2001;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0,0,0,0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar-overlay.open .side-drawer {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-logo {
    margin-bottom: 60px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    transition: var(--trans-fast);
    position: relative;
    width: fit-content;
}

.drawer-link:hover {
    color: var(--color-gold);
    padding-left: 15px;
}

.drawer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--trans-fast);
}

.drawer-link:hover::after {
    width: calc(100% - 15px);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.drawer-footer p {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 480px) {
    .side-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    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-image: url('gallery/lake-view-cafe.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: scale(1.05); /* For subtle animation effect */
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero .subtitle {
    color: var(--color-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    position: relative;
    opacity: 0.8;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

.heritage-bg {
    position: relative;
    background-image: url('gallery/interior-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

/* Sections Grid Base */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Brunch Section */
.image-box {
    position: relative;
    border-radius: 4px;
    z-index: 1;
}

.image-box img {
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gold-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    z-index: 0;
    transition: var(--trans-smooth);
}

.image-box:hover .gold-accent-box {
    transform: translate(10px, 10px);
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 30px;
}

.brunch-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--color-dark-surface);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 5px;
    font-weight: 500;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Features */
.features {
    background: var(--color-dark-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--color-dark-surface-2);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--trans-smooth);
    border: 1px solid rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--trans-smooth);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-gold);
    font-size: 1.8rem;
    transition: var(--trans-fast);
}

.feature-card:hover .feature-icon {
    background: var(--color-gold);
    color: var(--color-dark);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #aaa;
}

/* Gallery Banner */
.gallery-banner {
    height: 60vh;
    min-height: 400px;
}

.gallery-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.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;
    text-align: center;
}

.gallery-content .section-title {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.gallery-content p {
    color: var(--color-white);
    font-size: 1.2rem;
    max-width: 600px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    max-width: 300px;
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
    transition: var(--trans-fast);
}

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

.footer-links h3, .footer-contact h3, .timings h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px; width: 30px; height: 2px;
    background: var(--color-gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #999;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #999;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: var(--color-gold);
}

.timings p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #888;
}

.footer-bottom {
    background: #050505;
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #666;
}

.bottom-links a:hover {
    color: var(--color-white);
}

/* Interactive Menu Cover generated with CSS */
.menu-section {
    background: var(--color-dark);
}

.menu-cover-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    perspective: 1000px;
}

.css-menu-cover {
    width: 320px;
    height: 480px;
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border-radius: 4px 12px 12px 4px; /* like a book */
    box-shadow: -15px 0 20px rgba(0,0,0,0.5) inset, 0 20px 40px rgba(0,0,0,0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
}

.css-menu-cover::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 16px;
    background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 5;
    border-right: 1px solid rgba(0,0,0,0.8);
}

.css-menu-cover:hover {
    transform: translateY(-10px) rotateY(-5deg);
    box-shadow: -10px 0 25px rgba(0,0,0,0.4) inset, 15px 30px 45px rgba(0,0,0,0.8);
    cursor: pointer;
}

.cover-inner-border {
    width: 85%;
    height: 90%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
    margin-left: 8px; /* Push past the binding */
}

.cover-inner-border::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.gold-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.css-menu-cover h1 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.css-menu-cover h1.cursive {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: none;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 25px;
    font-weight: 400;
}

.cover-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 25px;
}

.css-menu-cover h2 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.css-menu-cover p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-hint {
    color: #666;
    font-style: italic;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.active.fade-up, .active.reveal-left, .active.reveal-right, .active.reveal-up {
    opacity: 1;
    transform: translate(0);
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links, .phone-link, .btn-primary:not(.hero-buttons .btn-primary) {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .brunch-info {
        grid-template-columns: 1fr;
    }
}

/* Remove 3rd-party Flipbook Branding */
.df-ui-watermark,
.df-watermark,
a[href*="dearflip"],
a[href*="flipbook"],
a.df-ui-btn[title="DearFlip"],
.df-ui-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    z-index: -999 !important;
}
/* Horizontal Scroll Utilities */
.horizontal-scroll-wrapper, .reviews-slider-wrapper {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.photo-scroll-flex > *, .reviews-grid > * {
    scroll-snap-align: start;
}

/* Responsive Design */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .section-grid {
        gap: 40px;
    }
}

/* Tablets (Portrait) */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .section-image-wrapper {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .brunch-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-actions .phone-link,
    .nav-actions .btn-primary {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        grid-column: span 1;
    }

    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .variety-list {
        grid-template-columns: 1fr !important;
    }
    
    .review-card {
        width: 300px !important;
        padding: 30px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .side-drawer {
        width: 100%;
        right: -100%;
        padding: 50px 30px;
    }

    .drawer-link {
        font-size: 1.5rem;
    }
    
    .menu-embedded-wrapper div[height] {
        height: 400px !important;
    }
}
/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--trans-smooth);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle i {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.light-theme .theme-toggle i {
    transform: rotate(360deg);
}

/* Light theme specific adjustments */
body.light-theme .navbar.scrolled {
    background: rgba(252, 252, 252, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

body.light-theme .hero-overlay {
    background: rgba(252, 252, 252, 0.8);
}

body.light-theme .hero p {
    color: #333;
}

body.light-theme .side-drawer {
    background: var(--color-dark);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

body.light-theme .feature-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

body.light-theme .review-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.light-theme .footer {
    background: #f8f8f8;
}

body.light-theme .footer-brand p,
body.light-theme .footer-links ul li a,
body.light-theme .footer-contact p {
    color: #666;
}

body.light-theme .footer-bottom {
    background: #f0f0f0 !important;
    border-top: 1px solid #e0e0e0 !important;
}

/* Hardcoded element overrides for Light Theme */
body.light-theme [style*="background: #050505"],
body.light-theme [style*="background:#050505"],
body.light-theme [style*="background: #000"],
body.light-theme [style*="background:#000"],
body.light-theme footer {
    background: var(--color-dark-surface) !important;
    color: var(--color-text) !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}

body.light-theme [style*="color: #fff"],
body.light-theme [style*="color:#fff"],
body.light-theme [style*="color: white"],
body.light-theme [style*="color:var(--color-white)"],
body.light-theme h1, 
body.light-theme h2, 
body.light-theme h3, 
body.light-theme h4 {
    color: var(--color-white) !important;
}

body.light-theme .contact-form-panel {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #dddddd !important;
}

body.light-theme .form-control {
    background: #ffffff !important;
    border-color: #dddddd !important;
    color: #333333 !important;
}

body.light-theme .form-group label {
    color: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        z-index: 3000 !important; /* Above everything */
    }
}
