@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* Switzer fallback */
@font-face {
    font-family: 'Switzer';
    src: local('Arial'), local('Helvetica');
    /* Fallback for now */
    font-weight: 500;
}

:root {
    --color-bg-light: #FAF8F3;
    --color-bg-warm: #F9F5E8;
    --color-primary-blue: #183E69;
    --color-text-dark: #222222;
    --color-text-black: #0D0C0C;
    --color-accent-blue: #193E6A;
    --color-border: #444444;
    --color-white: #ffffff;
    --color-gray: #BDBDBD;
    --color-gray-dark: #757575;

    --font-bodoni: 'Bodoni Moda', serif;
    /* Replacement for Bodoni 72 */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-switzer: 'Switzer', sans-serif;
}

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

html {
    /* This allows the page to grow naturally but kills the side-scroll */
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-inter);
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    /* Added back to prevent mobile menu causing scroll */
    position: relative;
}

/* Prevent vertical scrolling when menu is open - toggled by JS on html/body */
.no-scroll {
    overflow: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography Classes based on Figma */
.text-hero-title {
    font-family: var(--font-bodoni);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.5rem);
    /* Responsive 56px */
    line-height: 1.2;
    /* 90px on 56px is roughly 1.6, but tighten for responsive */
    color: var(--color-white);
}

.text-scroll {
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--font-switzer);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-section-heading {
    color: var(--color-primary-blue);
    font-size: clamp(2rem, 3vw, 3rem);
    /* 48px */
    font-family: var(--font-playfair);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    text-align: center;
}

.text-body-large {
    color: var(--color-text-dark);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    /* 24px */
    font-family: var(--font-inter);
    font-weight: 500;
    line-height: 1.5;
}

.text-body-serif {
    font-family: var(--font-playfair);
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    /* 24px */
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-primary-blue);
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: white;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-reserve {
    background: var(--color-primary-blue);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(121, 105, 72, 0.40);
    /* Fallback/Base */
    background: linear-gradient(90deg, rgba(121, 105, 72, 0.40) 0%, rgba(171, 161, 145, 0.40) 100%);
    backdrop-filter: blur(1px);
    padding: 60px;
    max-width: 90%;
    width: fit-content;
    margin-top: 20vh;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

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

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

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* Silq Intro Section */
.section-silq {
    background-color: var(--color-bg-warm);
    padding: 100px 5%;
    display: flex;
    gap: 50px;
    align-items: center;
    min-height: 80vh;
}

.silq-text {
    flex: 1;
    padding-right: 40px;
}

.silq-text h2 {
    font-family: var(--font-playfair);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.silq-gallery {
    flex: 1.5;
    position: relative;
    height: 500px;
    display: flex;
    gap: 20px;
}

.silq-gallery img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
}


/* Experience Section */
.section-experience {
    padding: 80px 5%;
    text-align: center;
    background: var(--color-bg-light);
}

.exp-header {
    margin-bottom: 60px;
}

/* Experience Section Upgrade */
.exp-grid {
    display: flex;
    gap: 20px;
    height: 600px;
    overflow-x: auto;
    /* Enable Scroll */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    padding-bottom: 20px;
    /* Space for scroll if needed or visual balance */
}

.exp-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.exp-card {
    flex: 0 0 300px;
    /* Specific width for cards when scrolling */
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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


/* Timing & Map */
.section-timing {
    background-color: var(--color-bg-warm);
    padding: 100px 5%;
    display: flex;
    gap: 50px;
}

.timing-info {
    flex: 1;
}

.timing-block {
    margin-bottom: 60px;
}

.location-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

/* About Page Specifics */
.about-hero {
    height: 60vh;
    min-height: 400px;
}

.about-food {
    padding: 100px 5%;
    background: var(--color-bg-warm);
    display: flex;
    gap: 50px;
}

.about-text-block {
    margin: 80px auto;
    max-width: 1200px;
    text-align: center;
}

.about-text-block h2 {
    margin-bottom: 40px;
    color: var(--color-primary-blue);
    /* or dark */
}

/* Footer */
footer {
    background-color: var(--color-primary-blue);
    color: white;
    padding: 60px 5% 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-family: var(--font-montserrat);
    font-size: 16px;
    text-transform: uppercase;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #444;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    color: var(--color-gray-dark);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    .section-silq,
    .section-timing,
    .about-food {
        flex-direction: column;
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .exp-card {
        height: 400px;
    }

    .navbar {
        padding: 20px 5%;
        /* Slight background for visibility */
    }

    .hero {
        margin-top: 0;
    }

    .hero-content {
        margin-top: 0;
        padding: 40px 20px;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile Menu State */
.nav-links.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--color-text-dark);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--color-text-dark);
}

@media (max-width: 900px) {
    .text-hero-title {
        font-size: 32px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        /* Dynamic viewport height */
        background-color: var(--color-bg-light);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s ease-in-out, visibility 0.4s;
        z-index: 150;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        color: var(--color-primary-blue);
        font-size: 24px;
        font-family: var(--font-bodoni);
        font-style: italic;
    }

    .btn-reserve {
        margin-top: 20px;
        color: white !important;
        font-family: var(--font-inter) !important;
        font-style: normal !important;
        font-size: 16px !important;
    }
}

/* Silq Gallery Scrollable */
.silq-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
}

.silq-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.silq-gallery img {
    height: 400px;
    width: auto;
    flex-shrink: 0;
    border-radius: 20px;
    object-fit: cover;
}



.footer-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Align items vertically */
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
}

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

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

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-block {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0 !important;
        /* Override inline styles */
    }

    .footer-nav {
        gap: 15px;
        flex-direction: column;
    }
}

/* About Page Specific Overrides */

/* Section 1: Header/Nav (Desktop: ~80px) */
/* Override default navbar positioning for about page if needed, or adjust globally */
/* The user wants a distinct header section of ~80px. 
   Currently .navbar is absolute. For About us page, maybe we want it relative or just constrained?
   "1 section (header with clickabe navigation and logo) - around 80 px"
   This implies the navbar itself IS this section.
*/
/* Global Scroll Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* About Page Specific Overrides */
/* Navbar: Use same structure, just handle background/position */
.about-nav {
    position: relative !important;
    background-image: url('assets/SILQ INT (16 of 16).jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 80px;
    padding: 0 5%;
    display: flex;
    /* Ensure flex for alignment */
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .about-nav {
        background-image: url('assets/image_1.jpg') !important;
    }
}

.about-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.about-nav>* {
    position: relative;
    z-index: 1;
}

.about-nav .nav-logo img {
    height: 40px;
    /* Reduced specific to About page to fit 80px constraint if Home is larger? */
    filter: brightness(0) invert(1) !important;
}

.about-nav .nav-links a {
    color: var(--color-white) !important;
}

.about-nav .mobile-toggle span {
    background-color: var(--color-white) !important;
}

/* Section 2: About Us Header (~160px) */
.about-page-header {
    width: 100%;
    height: 160px;
    /* Explicit height */
    background: #E9F3FB;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
    /* Remove gap if any */
}

.text-about-header {
    color: #0D0C0C;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 48px;
    word-wrap: break-word;
    /* User provided absolute position left: 800px top:56px which is roughly center. Flex center is safer. */
}

/* About Content spacing */
.about-food {
    padding: 60px 5%;
    /* Adjust padding if needed */
}

/* Experience Text Alignment */
.section-experience .about-text-block {
    text-align: left !important;
    /* Left align as requested */
    margin: 40px 0;
    /* Reset auto margin */
}

/* Footer Height (Desktop ~200px) */
/* Current footer styles are in previous block. We will override. */
footer {
    min-height: 200px;
    padding: 40px 5% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}