:root {
    /* Colors - Warm, Minimal, Premium */
    --bg-body: #FFFBF7;
    --bg-surface: #FFFFFF;
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --primary: #5D4037;
    /* Deep Warm Brown */
    --primary-hover: #4E342E;
    --accent: #D7CCC8;
    /* Soft Beige */
    --accent-light: #F5F5F5;
    --border: #EFEBE9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 80px;
    /* Adjust based on logo needs */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    font-weight: 500;
}

/* Mobile Nav - Simple Horizontal Scroll for very small screens or standard wrapping */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        /* space for scrollbar if any */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        width: 100%;
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    /* Almost full height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    padding-top: 60px;
    /* Offset for header */
}

/* Use a pseudo-element for background image to allow overlay effect */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay + Image */
    background: linear-gradient(to bottom, rgba(255, 251, 247, 0.8), rgba(255, 251, 247, 0.4)), url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-intro {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Menu Slider */
.menu-slider-wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.menu-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem 2rem 0.5rem;
    /* Padding for shadow */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.menu-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.menu-slider.active {
    cursor: grabbing;
    scroll-snap-type: none;
    /* Disable snap while dragging */
}

.menu-card {
    flex: 0 0 280px;
    /* Fixed width cards */
    scroll-snap-align: start;
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    user-select: none;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-img-wrapper:hover img {
    transform: scale(1.05);
}

.menu-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: capitalize;
}

.slider-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Hide slider buttons on mobile touch usually, but user asked for them on desktop. 
   On mobile, swipe is natural, but we can keep them or hide. */
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }

    .menu-card {
        flex: 0 0 80%;
        /* Wider cards on mobile */
    }
}

/* Location */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.branch-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.branch-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.branch-card .address {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.branch-card .landmark {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.branch-card .btn {
    margin-bottom: 1.5rem;
}

.map-container {
    height: 300px;
    background: var(--accent-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Notes Grid */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.note-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.note-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.note-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-surface);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 200px;
}

.contact-card .label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.contact-card .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Social Media Icons */
.social-links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    box-shadow: var(--shadow);
    color: var(--text-main);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icon.instagram:hover {
    color: #E4405F;
}

.social-icon.youtube:hover {
    color: #FF0000;
}

.social-icon.tiktok:hover {
    color: #000000;
}

.contact-action {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.footer-logo-img {
    height: 60px;
    /* Adjust size as needed */
    width: auto;
    opacity: 0.5;
    mix-blend-mode: multiply;
    /* Helps white background blend if needed */
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin-top: var(--spacing-xl);
}

.footer p {
    opacity: 0.8;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lb-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lb-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lb-caption {
    color: #fff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2005;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2005;
    border-radius: 50%;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lb-nav.prev {
    left: 20px;
}

.lb-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .lb-nav {
        padding: 0.5rem;
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Hours Text */
.hero-hours p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}