/* =============================================
   FLAVOURS OF INDIA 1947 — STYLES
   Theme: Dark navy (#1c2130) + Gold (#c9a96e) + White
   Fonts: Cinzel (headings/logo), Playfair Display (display), Inter (body)
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --color-bg: #0f1219;
    --color-bg-section: #141820;
    --color-surface: #1c2130;
    --color-surface-light: #242a3a;
    --color-gold: #c9a96e;
    --color-gold-light: #d4b87a;
    --color-gold-dark: #a8884f;
    --color-white: #ffffff;
    --color-text: #e0ddd6;
    --color-text-muted: #9a978f;
    --color-overlay: rgba(15, 18, 25, 0.7);

    --font-display: 'Cinzel', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --nav-height: 80px;
    --container-width: 1200px;
    --section-padding: 120px;
    --border-radius: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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

/* ---------- Section Shared ---------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-divider-left {
    justify-content: flex-start;
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

/* ---------- Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

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

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

.btn-lg {
    padding: 20px 48px;
    font-size: 15px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 18, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.1);
    height: 70px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-logo-svg {
    height: 44px;
    width: auto;
    transition: opacity var(--transition);
}

.nav-logo:hover .nav-logo-svg {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all var(--transition);
}

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

.nav-links a.nav-menu-btn {
    background: var(--color-gold);
    color: var(--color-bg);
    font-weight: 500;
    margin-left: 8px;
}

.nav-links a.nav-menu-btn:hover {
    background: var(--color-gold-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   MOBILE SIDEBAR
   ============================================= */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-surface);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(201, 169, 110, 0.15);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 28px 20px;
}

.sidebar-logo {
    width: 100px;
    height: auto;
}

.sidebar-close {
    color: var(--color-text-muted);
    padding: 4px;
    transition: color var(--transition);
    margin-top: 4px;
}

.sidebar-close:hover {
    color: var(--color-white);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 28px;
    flex: 1;
}

.sidebar-link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.sidebar-link:hover, .sidebar-link:focus {
    color: var(--color-gold);
    padding-left: 8px;
}

.sidebar-link.sidebar-menu-btn {
    color: var(--color-gold);
    font-weight: 600;
    border-bottom: none;
    margin-top: 8px;
}

.sidebar-footer {
    padding: 24px 28px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    transition: opacity var(--transition);
}

.sidebar-contact:hover {
    opacity: 0.8;
}

.sidebar-address {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 18, 25, 0.4) 0%,
        rgba(15, 18, 25, 0.2) 40%,
        rgba(15, 18, 25, 0.3) 70%,
        rgba(15, 18, 25, 0.8) 100%
    );
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.prev {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 18, 25, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-logo {
    width: 280px;
    height: 280px;
}

.hero-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold-light);
    letter-spacing: 3px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--color-bg);
}

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

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform var(--transition-slow);
}

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

.about-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(15, 18, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    text-align: center;
}

.badge-year {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 3px;
}

.about-text {
    padding: 10px 0;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

/* =============================================
   MENU CTA SECTION
   ============================================= */
.menu-cta {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    overflow: hidden;
}

.menu-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

@media (min-width: 769px) {
    .menu-cta-bg {
        background-attachment: fixed;
    }
}

.menu-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 25, 0.88);
}

.menu-cta-content {
    position: relative;
    z-index: 2;
}

.menu-cta-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--color-text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    background: var(--color-bg-section);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 18, 25, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* =============================================
   OPENING HOURS SECTION
   ============================================= */
.hours {
    background: var(--color-bg);
}

.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hours-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.hours-content {
    padding: 20px 0;
}

.hours-table {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

.hours-row.today {
    background: rgba(201, 169, 110, 0.06);
    border-radius: 6px;
    padding: 14px 12px;
    margin: 0 -12px;
    border-bottom-color: transparent;
}

.hours-row.today .hours-day {
    color: var(--color-gold);
    font-weight: 500;
}

.hours-day {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    min-width: 110px;
    letter-spacing: 0.5px;
}

.hours-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 12px;
    min-width: 20px;
    align-self: center;
    margin-bottom: 4px;
}

.hours-time {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.hours-time-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background: var(--color-bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 420px;
    background: var(--color-surface);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    filter: grayscale(20%) brightness(0.9);
    transition: filter var(--transition);
}

.contact-map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 60px 0 40px;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo-svg {
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 28px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
    margin-bottom: 24px;
}

.footer-copy {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-credit a {
    color: rgba(201, 169, 110, 0.5);
    transition: color var(--transition);
}

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

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .hours-wrapper {
        gap: 40px;
    }

    .hours-image img {
        height: 440px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item:nth-child(n+7) {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
        --section-padding: 64px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar.scrolled {
        height: 60px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-logo {
        width: 220px;
        height: 220px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        justify-content: center;
        padding: 14px 28px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 16px 36px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    .about-lead {
        font-size: 19px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item:nth-child(n+7) {
        display: block;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15, 18, 25, 0.6) 0%, transparent 40%);
    }

    /* Hours */
    .hours-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hours-image {
        order: 2;
    }

    .hours-image img {
        height: 300px;
    }

    .hours-content {
        order: 1;
    }

    .section-divider-left {
        justify-content: center;
    }

    .hours-content .section-label,
    .hours-content .section-title {
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 40px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    /* Footer */
    .footer-links {
        gap: 6px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 56px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-image img {
        height: 240px;
    }

    .about-lead {
        font-size: 17px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .hours-day {
        min-width: 85px;
        font-size: 13px;
    }

    .hours-time {
        font-size: 13px;
    }

    .sidebar {
        width: 100%;
        max-width: 100vw;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .hero-slide {
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   LIGHTBOX (Gallery fullscreen view)
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
