/* style.css */
:root {
    /* Primary Colors */
    --primary-brown: #792822; /* Updated to custom maroon */
    --espresso: #792822;      /* Updated to custom maroon */
    --walnut: #3E2723;
    
    /* Secondary Colors */
    --cream: #FDFBF7;
    --warm-white: #FAF8F5;
    --beige: #F5EFE6;
    --soft-grey: #8D8D8D;
    
    /* Accents */
    --gold: #D4AF37;
    --olive-green: #556B2F;
    --warm-caramel: #C68E58;
    
    /* Typography */
    --font-heading: 'Lora', serif; /* Updated to new font */
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing & Utilities */
    --section-padding: 100px 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 30px rgba(43, 27, 18, 0.08);
    --shadow-hover: 0 20px 40px rgba(43, 27, 18, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--espresso);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--espresso);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--cream);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--espresso);
}

.subtitle {
    font-size: 1.1rem;
    color: #8d8d8d;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 3rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: var(--espresso);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--espresso);
}

.btn-secondary:hover {
    background-color: #2b1b12;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: var(--cream);
}

.btn.glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #792822;
    border: #792822;
    color: white;
}
.btn.glass.btn-primary { background: rgba(74, 48, 34, 0.8); }
.btn.glass.btn-primary:hover { background: rgba(43, 27, 18, 0.9); }

.full-width { width: 100%; }

/* Navigation */
/* Main Header */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.3rem 0;
    background: #FFFFFF; /* White header background */
    transition: var(--transition);
}

.navbar.scrolled {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Updated Brand Logo Styling for Responsiveness */
.logo {
    display: flex;
    align-items: center;
}
.brand-logo {
    height: 80px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    color: var(--espresso);
    font-weight: 500; /* 500 means Inter Medium */
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .hamburger i {
    color: var(--espresso);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Updated Navbar Button - Always Visible */
.navbar .btn-outline {
    border-color: #752a1d;
    color: #752a1d;
    padding: 10px 20px;
    transition: var(--transition);
}

.navbar.scrolled .btn-outline {
    border-color: #752a1d;
    color: #752a1d;
}

/* Hover Effect for both Scrolled and Unscrolled States */
.navbar .btn-outline:hover,
.navbar.scrolled .btn-outline:hover {
    background: #752a1d;
    color: white; 
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: auto;
    position: relative;
    display: grid;
    padding: 0;
    overflow: hidden;
}

.hero-video-wrapper {
    position: relative;
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    z-index: 1;
    background: #1a120d;
}

.hero-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
    animation: slowZoom 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(43,27,18,0.4), rgba(43,27,18,0.7));
}

.hero-content {
    grid-area: 1 / 1;
    align-self: center;
    justify-self: center;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500; /* Added Bold for Hero */
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.reveal-up { opacity: 0; transform: translateY(40px); transition: 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: 0.8s ease; }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* Layout Grids */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section Specific Layout */
.about .layout-grid {
    align-items: stretch;
    gap: 40px;
    grid-template-columns: 5fr 7fr;
}

/* About Section */
.story-article {
    background-color: var(--beige);
    border: 1px solid rgba(121, 40, 34, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(121, 40, 34, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.header-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-brown);
}

.story-kicker {
    color: var(--primary-brown);
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: inherit;
    letter-spacing: 0.01em;
    margin: 0;
}

.chapter-meta {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--soft-grey);
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.01rem;
    font-weight: 650;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--espresso);
}

.story-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    border-left: 2px solid var(--primary-brown);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--soft-grey);
}

.promise-intro-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-grey);
    margin-bottom: 1rem;
}

.brand-promise-box {
    background-color: var(--espresso);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90px;
}

.promise-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-brown);
    display: block;
    margin-bottom: 0.3rem;
}

.brand-promise-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.philosophy-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-frame {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(43, 27, 18, 0.9);
    color: var(--primary-brown);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-content {
    background-color: white;
    border: 1px solid rgba(121, 40, 34, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.philosophy-header {
    border-bottom: 1px solid rgba(121, 40, 34, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 550;
    margin: 0;
    color: var(--espresso);
}

.philosophy-intro {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    margin-top: 0;
}

.philosophy-body {
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--soft-grey);
    margin-bottom: 1.5rem;
    margin-top: 0;
    flex-grow: 1;
}

.philosophy-conclusion {
    background-color: var(--beige);
    border: 1px solid rgba(121, 40, 34, 0.1);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
}

.conclusion-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-grey);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.conclusion-main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin: 0;
}

/* Features (Why Us) */
.why-us-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.why-us-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-brown);
    display: block;
    margin-bottom: 0.5rem;
}

.why-us-subtitle {
    color: var(--soft-grey);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    width: calc(33.333% - 1.34rem);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(121, 40, 34, 0.05);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-brown);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover .card-accent {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    font-size: 1.5rem;
    transition: var(--transition);
}

.card-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(121, 40, 34, 0.15);
    font-weight: 700;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-brown);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: left;
    color: var(--espresso);
}

.feature-content {
    text-align: left;
    margin-top: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-content p {
    color: var(--soft-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.promise-badges {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.promise-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(121, 40, 34, 0.1);
    transition: var(--transition);
    min-width: 70px;
}

.promise-badge i {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    transition: var(--transition);
}

.promise-badge span {
    color: var(--espresso);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.promise-badge:hover {
    background: white;
    border-color: var(--primary-brown);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(43, 27, 18, 0.05);
}

.promise-badge:hover i {
    color: var(--gold);
}

@media (max-width: 480px) {
    .promise-badges {
        flex-direction: column;
    }
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.promise-list li {
    font-size: 0.95rem;
    color: var(--soft-grey);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.promise-list li i {
    color: var(--primary-brown);
    font-size: 0.8rem;
}

/* Menu Section */
.menu-header {
    margin-bottom: 3rem;
}

.menu-search-wrapper {
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
}

.menu-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-grey);
}

.menu-search-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.menu-search-wrapper input:focus {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(74, 48, 34, 0.1);
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-filters {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    border: 1.5px solid var(--primary-brown);
    color: var(--primary-brown);
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-brown);
    color: white;
}

.sub-filter-btn {
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(74, 48, 34, 0.3);
    color: rgba(74, 48, 34, 0.7);
}

.sub-filter-btn.active, .sub-filter-btn:hover {
    background: rgba(74, 48, 34, 0.1);
    border-color: var(--primary-brown);
    color: var(--primary-brown);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--primary-brown);
    z-index: 2;
}
.badge.veg { background: var(--olive-green); display: flex; align-items: center; gap: 4px; }
.badge.veg i { font-size: 0.5rem; }
.badge.bestseller { background: var(--gold); color: var(--espresso); }

.fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--soft-grey);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fav-btn:hover, .fav-btn.active {
    color: #e74c3c;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--soft-grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: auto;
}

.price {
    font-weight: 600; /* Changed from 700 to 600 (SemiBold) */
    font-size: 1.2rem;
    color: var(--primary-brown);
}

/* Menu Footer (CTA Button & Note) */
.menu-footer {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu-note {
    color: var(--soft-grey);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
    color: var(--soft-grey);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

/* Gallery Section */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--espresso);
}

/* Portrait (tall) slots: items 2 and 5 */
.masonry-item:nth-child(2),
.masonry-item:nth-child(5) {
    grid-row: span 2;
}

/* Images */
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Video — matches image behaviour */
.masonry-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(43,27,18,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item .overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.masonry-item:hover img,
.masonry-item:hover video {
    transform: scale(1.07);
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.masonry-item:hover .overlay i {
    transform: scale(1);
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

/* Mobile: single column, fixed height per item */
@media (max-width: 560px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .masonry-item:nth-child(2),
    .masonry-item:nth-child(5) {
        grid-row: span 1;
    }
}

/* Reviews */
.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--espresso);
    margin-bottom: 2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer img {
    width: 50px; height: 50px; border-radius: 50%;
}
.reviewer-info h4 { font-size: 1rem; margin-bottom: 0.2rem;}
.reviewer-info span { font-size: 0.8rem; color: var(--soft-grey);}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    color: var(--espresso);
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.location-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    max-height: 550px;
    overflow-y: auto;
}

.location-card {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.location-card:hover, .location-card.active {
    border-color: var(--primary-brown);
    background: var(--warm-white);
}

.location-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--espresso);
}

.location-card p {
    font-size: 0.92rem;
    color: var(--soft-grey);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.location-card p i {
    color: var(--primary-brown);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.location-card p span {
    flex: 1;
}

.location-card p a {
    color: inherit;
    transition: var(--transition);
}

.location-card p a:hover {
    color: var(--primary-brown);
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-brown);
    font-weight: 600;
}
.btn-link:hover { text-decoration: underline; }

.map-container {
    height: 100%;
    min-height: 500px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--espresso);
    color: var(--cream);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: #bbb; margin-bottom: 1.5rem; }

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links a {
    font-family: var(--font-body);
    font-weight: 500;
    color: #bbb;
}
.footer-links a:hover {
    color: var(--gold);
}


.footer-bottom {
    background: #1f120c;
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

.legal-links a { margin-left: 1.5rem; color: #888; }
.legal-links a:hover { color: white; }

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #c4a02d;
    color: var(--espresso);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .about .layout-grid {
        gap: 32px;
    }
    
    .feature-card {
        width: calc(50% - 1rem); /* 2 cards on laptop/tablet */
    }
}

@media (max-width: 992px) {
    .layout-grid, .locations-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Keep 2 columns for tablet in the about section */
    .about .layout-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .hero-content h1 { font-size: 2rem; }
    .experience-badge { right: 20px; }
}

@media (max-width: 767px) {
    .about .layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        margin-bottom: 0;
    }
    .about-image img {
        aspect-ratio: 4/3;
        max-height: 500px;
    }
    .feature-card {
        width: 100%; /* 1 card on mobile */
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { left: 0; }
    .nav-links a { color: var(--espresso); font-size: 1.2rem; }
    .hamburger { display: block; color: var(--espresso); }
    .navbar {
    background: #FFFFFF;
}
    .logo { color: var(--espresso); }
    .nav-actions .btn-outline { display: none; }
    
    /* Hero Section Mobile Fixes */
    .hero { 
        height: auto; 
        min-height: unset; 
        padding: 0; 
        display: grid;
    }
    .hero-video-wrapper {
        position: relative;
        grid-area: 1 / 1;
        height: auto;
    }
    .hero-bg {
        height: auto;
        object-fit: contain; /* or cover, it doesn't matter much since height is auto */
    }
    .hero-content { 
        grid-area: 1 / 1;
        align-self: center;
        padding-top: 60px; /* some top padding for navbar */
        width: 100%; 
    }
    .hero-content h1 { font-size: 2rem; line-height: 1.2; }
    .hero-content p { font-size: 0.8rem; margin-bottom: 2rem; }
    
    /* Hide scroll indicator on mobile so it doesn't overlap buttons */
    .scroll-indicator { display: none; }
    
    /* Resize WhatsApp float for mobile - REMOVED */
    
    
    .section-padding { padding: 60px 0; }
    
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
    
    /* Menu Filters Mobile Fix */
    .menu-filters { flex-direction: column; width: 100%; }
    .filter-btn { width: 100%; }
}

@media (max-width: 480px) {
    /* Button Layout Fixes */
    .hero-ctas { 
        flex-direction: column; 
        gap: 1rem; 
        width: 100%; 
        padding: 0 15px; 
    }
    .hero-ctas .btn { 
        width: 100%; /* Make buttons full width on small screens */
    }
    
    .menu-filters { flex-direction: column; width: 100%; }
    .filter-btn { width: 100%; }
    .brand-logo { height: 60px; } 
}

/* ── Gallery Instagram button mobile fix ────────────────────── */
@media (max-width: 900px) {
    .gallery .text-center.mt-4 {
        margin-top: 2rem;
        position: relative;
        z-index: 1;
        clear: both;
    }
}

/* ── Find Us mobile fix ──────────────────────────────────────── */
@media (max-width: 992px) {
    .location-list {
        max-height: none;   /* remove restrictive height so full address shows */
        padding: 1.5rem;
    }
    .location-card {
        padding: 1.2rem;
    }
}

/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blurred / dimmed backdrop */
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: lbFadeIn 0.3s ease;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Media wrapper — centred, above backdrop */
.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbScaleIn 0.3s ease;
}

@keyframes lbScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* Shared styles for both media types */
.lightbox-media {
    display: none;
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-media.active {
    display: block;
}

/* Close button */
.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--espresso);
    transform: rotate(90deg);
}

/* Prevent body scroll while lightbox is open */
body.lightbox-active {
    overflow: hidden;
}

/* Mobile close button */
@media (max-width: 560px) {
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .lightbox-media {
        max-width: 96vw;
        max-height: 82vh;
    }
}
