/* 
   XOFA CAFE - Premium Styles
   Theme: Modern, Dark, Cozy, Coffee Culture
*/

/* =========================================
   LOCAL FONTS SETUP
   ========================================= */

/* --- Outfit (Headings) --- */
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* --- Inter (Body) --- */
/* Latin Subset */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Latin.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Vietnamese Subset */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Vietnamese.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* --- Playfair Display (Accents) --- */
/* Latin Subset */
@font-face {
    font-family: 'Playfair Display';
    src: url('assets/fonts/PlayfairDisplay-Bold-Latin.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Vietnamese Subset */
@font-face {
    font-family: 'Playfair Display';
    src: url('assets/fonts/PlayfairDisplay-Bold-Vietnamese.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

:root {
    /* Colors - Richer & More Sophisticated */
    --bg-body: #0C0C0C;
    --bg-surface: #161616;
    --bg-surface-soft: #1E1E1E;
    --bg-surface-hover: #222222;
    --bg-overlay: rgba(12, 12, 12, 0.85);
    
    --primary: #D4AF37; /* Burnished Gold */
    --primary-light: #E5C366;
    --primary-dark: #A68626;
    --primary-hover: #C5A028;
    --secondary: #252422;
    
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dim: #666666;
    --text-accent: var(--primary);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    /* Shadows - Layered for depth */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.15);
    --shadow-glow-strong: 0 0 40px rgba(212, 175, 55, 0.25);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 15px;

    /* Fonts */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --header-height: 90px;
    --section-padding: 80px 0;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

/* Typography Customization */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Buttons - Premium Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: 1px solid var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-strong);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.navbar.scrolled,
.navbar-solid {
    background: var(--bg-overlay);
    backdrop-filter: blur(var(--glass-blur));
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    transition: var(--transition-base);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-img,
.navbar-solid .logo-img {
    height: 40px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.7), 
        rgba(0,0,0,0.4) 50%, 
        var(--bg-body)), url('images/xofa-cafe.webp') no-repeat center center/cover;
    background-attachment: fixed;
    padding-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 950px;
    padding: 0 24px;
    z-index: 2;
    margin-top: -40px; /* Offset to push content up as requested */
    animation: fadeInUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 0.95;
    background: linear-gradient(to bottom, #ffffff, #eeeeee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 4px 20px rgba(0,0,0,1);
    font-weight: 400;
}

.hero .btn {
    padding: 20px 50px;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2.5s infinite;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
}

.scroll-down:hover {
    color: #fff;
    transform: translateX(-50%) translateY(5px);
}

/* Story Section - Elegant & Professional */
.story-section {
    padding: 60px 0;
    background-color: #FCF9F5; /* Warm, premium light background */
    position: relative;
    overflow: hidden;
}

/* Menu Hero Override */
.menu-hero {
    height: 65vh;
    min-height: 550px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.8) 100%), url('images/xofa-cafe.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-hero .hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    z-index: 2;
    margin-top: 60px; /* Compensate for fixed header visual balance */
}

.menu-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.menu-hero p {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 820px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 400;
}

/* Mobile Optimization for Hero */
@media (max-width: 768px) {
    .menu-hero {
        height: auto;
        min-height: auto;
        padding: 140px 0 80px; /* Adequate spacing for navbar */
        background-attachment: scroll; /* Smoother performance on mobile */
        align-items: flex-start;
    }

    .menu-hero .hero-content {
        margin-top: 0;
    }

    .menu-hero h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .menu-hero p {
        font-size: 1.15rem;
        line-height: 1.6;
        padding: 0; /* Removed extra padding for better use of space */
    }
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d4af37 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.story-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    padding: 0 32px;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
    display: block;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 80%;
    height: 80%;
    background: var(--primary);
    opacity: 0.05;
    z-index: -1;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.story-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    z-index: 2;
    opacity: 0.3;
}

.story-image-wrapper:hover img {
    transform: translate(-10px, -10px);
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.12);
}

.story-content {
    position: relative;
}

.story-content h2 {
    color: var(--primary-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.story-content h3 {
    color: #1a1a1a;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.story-content p {
    color: #4a4a4a;
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 400;
}

.story-content .btn {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    padding: 18px 45px;
}

.story-content .btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .story-section {
        padding: 40px 0;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 24px;
    }
    
    .story-content h2 {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }

    .story-content h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .story-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .story-image-wrapper::before {
        top: -15px;
        left: -15px;
    }

    .story-image-wrapper::after {
        bottom: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
    }
}

/* Atmosphere Section - Professional & Premium Light Design */
.atmosphere-section {
    padding: 100px 0;
    background-color: #FDFBF9; /* Sophisticated Warm Light Background */
    position: relative;
    overflow: hidden;
}

.atmosphere-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.atmosphere-section .container {
    position: relative;
    z-index: 1;
}

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

.section-subtitle {
    display: block;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.atmosphere-section h2 {
    color: #1A1A1A;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.atmosphere-section .section-lead {
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.atmosphere-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.atmosphere-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.atmosphere-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.atmosphere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.atmosphere-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.atmosphere-card:hover .atmosphere-image img {
    transform: scale(1.1);
}

.atmosphere-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.atmosphere-content h3 {
    color: #1A1A1A;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.atmosphere-content p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Atmosphere Section Media Queries - Large Desktop */
@media (max-width: 1200px) {
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


/* Features Section - Professional & Elegant */
.features-section {
    padding: 100px 0;
    background-color: #F8F6F2; /* Soft beige background */
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.05) 0px, transparent 50%);
    pointer-events: none;
}

.features-section .section-header h2 {
    color: #1A1A1A;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.features-section .section-lead {
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}



.feature-card h3 {
    color: #1A1A1A;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
}

/* Why Love Section */
/* Why Love Section - Refined & Professional */
.love-section {
    padding: 100px 0;
    background-color: #FAF8F6; /* Clean, warm off-white */
    position: relative;
    overflow: hidden;
}

.love-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.love-section h2 {
    color: #1A1A1A;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.love-section .section-lead {
    color: #555555;
    max-width: 650px;
    margin: 0 auto;
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.love-card {
    text-align: center;
    padding: 50px 30px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.love-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.love-icon-bg {
    width: 80px;
    height: 80px;
    background: #FDFBF9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}



.love-card h3 {
    color: #1A1A1A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.love-card p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .love-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .love-section {
        padding: 60px 0;
    }
    
    .love-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .love-card {
        padding: 40px 20px;
    }
}

/* Experience Section - Refined & Professional */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFCF7 0%, #F5F2EB 100%); /* Elegant warm gradient */
    position: relative;
    overflow: hidden;
}

/* Elegant background pattern */
.experience-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.experience-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.experience-section h2 {
    color: #1A1A1A;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.experience-section .section-lead {
    color: #555555;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: #FFFFFF;
    padding: 50px 35px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); /* Soft but deep shadow */
    border-color: rgba(212, 175, 55, 0.2);
}

/* Step Number Styling - Professional Badge */
.step-number {
    font-family: var(--font-heading, "Georgia", serif);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15); /* Subtle gold */
    line-height: 1;
    margin-bottom: 25px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.experience-card:hover .step-number {
    color: #D4AF37; /* Full gold on hover */
    transform: scale(1.05) translateX(10px);
}

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

.experience-content h3 {
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.experience-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Decorative minimalist line */
.experience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.experience-card:hover::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Menu Section */
/* Menu Section - Modern & Professional */
.menu-section {
    padding: 100px 0;
    background-color: #FFFFFF; /* Pure white for clean, professional look */
    position: relative;
}

/* Subtle background accent to break monotony */
.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, #F8F9FA, #FFFFFF);
    z-index: 0;
}

.menu-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.menu-section .section-header h2 {
    color: #1A1A1A; /* Sharp black for contrast */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.menu-section .section-header .section-lead {
    color: #555;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.menu-card {
    flex: 1 1 350px; /* Responsive flex basis */
    max-width: 400px; /* Prevent cards from getting too wide on the last row */
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

.menu-image {
    height: 260px; /* Balanced height */
    overflow: hidden;
    position: relative;
}

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

.menu-card:hover .menu-image img {
    transform: scale(1.08);
}

/* Add a badge-like overlay for category */
.menu-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
    opacity: 0.6;
    transition: opacity 0.3s;
    z-index: 1;
}

.menu-card:hover .menu-image::before {
    opacity: 0.4;
}

.menu-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left; /* Professional align left */
}

.menu-info h3 {
    color: #1A1A1A;
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Add a subtle interactive link visualization */
.menu-card::after {
    content: '→';
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.menu-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.menu-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-footer p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #444;
}

.menu-footer .btn {
    background-color: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 14px 40px;
    font-weight: 700;
    box-shadow: none;
}

.menu-footer .btn:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Opening Hours */
/* Opening Hours - Redesigned */
.hours-section {
    padding: 100px 0;
    background-color: #FAFAF5;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(234, 224, 200, 0.4) 0%, rgba(246, 247, 237, 0) 90%);
    text-align: center;
    position: relative;
    color: #333;
}

.hours-section .section-header {
    margin-bottom: 70px;
}

.hours-section .section-header h2 {
    color: #2c2c2c;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hours-section .section-header .section-lead {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.hours-card {
    background: #FFFFFF;
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #E5C56A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.hours-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFFCF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #CBA155;
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 161, 85, 0.1);
}

.hours-card:hover .icon-wrapper {
    background: #CBA155;
    color: #FFFFFF;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(203, 161, 85, 0.2);
    border-color: #CBA155;
}

.hours-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.hours-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Section - Redesigned */
.reviews-section {
    padding: 100px 0;
    background-color: #F9F7F2; /* Light, elegant warm gray/beige */
    color: #2D2D2D; /* Dark grey text for contrast */
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-header-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.reviews-header-wrapper h2 {
    color: #1A1A1A;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.reviews-summary-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reviews-summary-content p {
    color: #444; /* Darker for better readability */
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.reviews-summary-content p:last-child {
    margin-bottom: 0;
}

.reviews-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .reviews-info-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-content-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual Column */
.reviews-visual-col {
    position: relative;
}

.reviews-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.reviews-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 40px 70px rgba(0,0,0,0.15);
}

.reviews-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-highlight-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.review-highlight-card .stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.review-highlight-card p {
    color: #222;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.review-highlight-card span {
    color: #666;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Reviews List Column */
.reviews-list-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    background: #FFFFFF;
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: default;
}

.review-item:hover {
    transform: translateY(-5px) translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.review-stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Decorative Quote Mark */
.review-item::before {
    content: '“';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: serif;
    font-size: 6rem;
    line-height: 1;
    color: #F5F5F5;
    z-index: 0;
    transition: color 0.3s ease;
}

.review-item:hover::before {
    color: rgba(212, 175, 55, 0.1);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

.author-name {
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-type {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.reviews-footer {
    text-align: center;
    margin-top: 60px;
}

.reviews-footer .btn {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 15px 45px;
    font-weight: 600;
    box-shadow: none;
}

.reviews-footer .btn:hover {
    background: #1A1A1A;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Reservation Section */
/* Reservation Section - Redesigned */
.reservation-section {
    padding: 120px 0;
    background: url('images/xofa-reservations.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect - Image stays in place on scroll */
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay for text readability */
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.reservation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reservation-content h2,
.reservation-content h1 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.reservation-text {
    border: none;
    padding: 0;
}

.reservation-text p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.reservation-text p:last-child {
    margin-bottom: 0;
}

.reservation-action {
    text-align: center;
    margin-top: 10px;
}

.reservation-action .btn {
    padding: 20px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.reservation-action .btn:hover {
    background: #FFFFFF;
    color: #000;
    border-color: #FFFFFF;
    transform: translateY(-4px);
}

@media (max-width: 992px) {
    .reservation-content {
        padding: 0 20px;
        gap: 20px;
    }

    .reservation-content h2 {
        font-size: 2.8rem;
    }
    
    .reservation-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Reservation Section Mobile Optimizations */
    .reservation-section {
        padding: 80px 0;
        /* Mobile browsers often struggle with fixed backgrounds + scroll, so we use scroll for smoother performance */
        background-attachment: scroll; 
        background-position: center;
    }

    .reservation-content {
        gap: 25px;
        padding: 0 15px;
    }

    .reservation-content h2 {
        font-size: 2.2rem; /* Adjusted for mobile readability */
        line-height: 1.15;
    }

    .reservation-text p {
        font-size: 1.05rem; /* Readable paragraph size */
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .reservation-action .btn {
        padding: 16px 40px;
        font-size: 0.9rem;
        width: 100%; /* Full width button on mobile for easier tapping */
        max-width: 300px; /* But not too wide */
    }
}

/* FAQ Section - Professional & Attractive Light Design */
.faq-section {
    padding: 60px 0;
    background-color: #FBF9F6; /* Warm, sophisticated light background */
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.faq-section .section-header h2 {
    color: #1A1A1A;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.faq-section .section-lead {
    color: #555555;
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-question {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    padding-right: 24px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #000;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-dark);
}

.faq-icon {
    /* font-size removed for SVG */
    color: #C0C0C0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.5, 0, 0.1, 1);
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #FFFFFF;
}

.faq-answer p {
    padding: 5px 32px 32px 32px;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    max-width: 95%;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        gap: 16px;
    }

    /* Disable hover transforms on touch to prevent sticky states */
    .faq-item:hover {
        transform: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.06);
    }

    /* Active state remains prominent */
    .faq-item.active {
        border-color: var(--primary);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 16px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        /* font-size removed */
    }
    
    .faq-answer p {
        padding: 5px 24px 24px 24px;
        font-size: 1rem;
    }
}

/* Location Section - Professional & Attractive Light Design */
.location-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FCFAF7 0%, #FFFDF9 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.location-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.location-section .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.location-section h2 {
    color: #1A1A1A;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

.location-section .section-lead {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.location-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.info-block:hover::before {
    opacity: 1;
}

/* Override inline styles for h2 inside info block if needed, though inline usually persists. 
   We'll target it generically to ensure good spacing. */
.info-block h2 { 
    margin-top: 0;
    margin-bottom: 20px;
}

.info-block h3 {
    color: #1A1A1A;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-block h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.address-text {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.7;
    font-weight: 500;
}

.landmarks-list {
    margin-top: 15px;
}

.landmarks-list li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #666666;
    transition: all 0.2s ease;
}

.landmarks-list li:hover {
    color: #1A1A1A;
    transform: translateX(5px);
}

.landmarks-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: none;
    background: none;
    width: auto;
    height: auto;
}

.landmarks-list li strong {
    color: #2c2c2c;
    font-weight: 700;
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 10px solid #FFFFFF;
    height: 100%;
    min-height: 650px;
    position: relative;
    transition: all 0.4s ease;
}

.location-map:hover {
    transform: scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.1) contrast(1.05); /* Slight enhancement */
}

/* Footer */
.footer {
    background-color: #080808;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    padding: 0;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-col p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary);
}

.footer-col h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    color: var(--text-main);
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-base);
}

.links-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    color: var(--text-muted);
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.back-to-top:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -15px);
    }
    60% {
        transform: translate(-50%, -8px);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .story-container, .reviews-content-grid, .location-content { gap: 40px; }
}

@media (max-width: 992px) {
    :root { --section-padding: 80px 0; }
    
    .reviews-content-grid,
    .location-content,
    .reservation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reservation-content {
        flex-direction: column;
    }

    .reservation-action {
        text-align: center;
    }
    
    .story-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-item, .social-links {
        justify-content: center;
    }

    .info-block {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-body);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 30px;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-link {
        font-size: 1.2rem;
    }

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

    /* Atmosphere Section Mobile Optimizations */
    .atmosphere-section {
        padding: 60px 0;
    }

    .atmosphere-section .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .atmosphere-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .atmosphere-section .section-lead {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .atmosphere-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .atmosphere-card {
        border-radius: 18px;
    }

    .atmosphere-image {
        height: 260px;
    }

    .atmosphere-content {
        padding: 25px 20px;
    }

    .atmosphere-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .card-overlay {
        opacity: 1; /* Make visible on mobile since hover is limited */
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.95);
        font-size: 0.7rem;
        top: 15px;
        left: 15px;
    }

    /* Features Section Mobile Optimizations */
    .features-section {
        padding: 60px 0;
    }

    .features-section .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .features-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .features-section .section-lead {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 35px 25px;
        border-radius: 20px;
        text-align: center; /* Center align for better mobile symmetry */
    }

    .feature-icon-wrapper {
        margin: 0 auto 20px;
        width: 56px;
        height: 56px;
    }

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

    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
    }

    /* Experience Section Mobile Optimization */
    .experience-section {
        padding: 60px 0;
    }

    .experience-section .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .experience-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .experience-section .section-lead {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
        padding: 0 10px;
        max-width: 100%; /* Ensure it takes full available width */
    }

    .experience-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .step-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .experience-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .experience-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Opening Hours Mobile Optimization */
    .hours-section {
        padding: 60px 0;
    }

    .hours-section .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .hours-section .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hours-section .section-header .section-lead {
        font-size: 1.05rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .hours-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .hours-card:hover {
        transform: translateY(-5px);
    }
    /* Reviews Section Mobile Optimization */
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .reviews-header-wrapper {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .reviews-text-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .reviews-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 10px;
    }
    
    .reviews-image-wrapper {
        transform: rotate(0deg);
        height: 350px;
        margin: 0 10px;
    }
    
    .reviews-image-wrapper:hover {
        transform: scale(1);
    }
    
    /* Adjust highlight card for mobile */
    .review-highlight-card {
        width: 90%;
        padding: 20px;
        bottom: 20px;
    }
    
    .review-highlight-card p {
        font-size: 1rem;
    }

    .reviews-list-col {
        gap: 20px;
    }
    
    .review-item {
        padding: 30px 25px;
        text-align: left; /* Ensure readability */
        margin-bottom: 0;
    }
    
    .review-item::before {
        font-size: 4rem;
        top: 10px;
        right: 20px;
    }

    .review-text {
        font-size: 1rem;
    }

    /* Location Section Mobile Optimization */
    .location-section {
        padding: 100px 0 60px 0;
    }

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

    .location-section h2 {
        font-size: 2rem; /* Optimal mobile heading size */
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .location-section .section-lead {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .location-content {
        gap: 30px;
        padding: 0; /* Remove extra padding to maximize width */
        grid-template-columns: 1fr; /* Ensure single column */
    }

    .info-block {
        padding: 30px 20px; /* Comfortable padding for mobile */
        border-radius: 20px;
    }
    
    .info-block h3 {
        font-size: 1.1rem;
    }

    .address-text {
        font-size: 1.05rem;
    }

    .location-map {
        min-height: 320px; /* Balanced height */
        border-width: 6px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Adjusted shadow */
    }
}

/* Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Purpose & Philosophy Section - Redesigned */
.philosophy-section-v2 {
    position: relative;
    padding: 60px 0;
    background-color: #FDFBF7; /* Light, warm attractive background */
    color: #1a1a1a;
    overflow: hidden;
}

.philosophy-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.philosophy-header-v2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.philosophy-eyebrow {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary); /* Gold */
    margin-bottom: 16px;
}

.philosophy-header-v2 h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.philosophy-intro {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.philosophy-card-v2 {
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.philosophy-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.philosophy-card-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -20px;
    right: 20px;
    line-height: 1;
    transition: all 0.4s ease;
}

.philosophy-card-v2:hover .philosophy-card-number {
    color: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.philosophy-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}



.philosophy-card-v2 h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.philosophy-card-v2 p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.philosophy-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.philosophy-card-v2:hover .philosophy-card-accent {
    width: 100%;
}

.philosophy-featured {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding: 0 20px;
}

.philosophy-featured-content {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.philosophy-featured-content::before,
.philosophy-featured-content::after {
    content: '"';
    font-family: serif;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    line-height: 1;
    pointer-events: none;
}

.philosophy-featured-content::before {
    top: 20px;
    left: 40px;
}

.philosophy-featured-content::after {
    bottom: -40px;
    right: 40px;
    transform: rotate(180deg);
}

.philosophy-featured-content blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .philosophy-grid-v2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-featured-content {
        padding: 40px 30px;
    }
    
    .philosophy-featured-content blockquote {
        font-size: 1.5rem;
    }
}

/* Mobile Optimizations for Philosophy Section */
@media (max-width: 576px) {
    .philosophy-section-v2 {
        padding: 50px 0;
    }

    .philosophy-header-v2 {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .philosophy-header-v2 h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .philosophy-intro {
        font-size: 1.05rem;
    }

    .philosophy-grid-v2 {
        gap: 24px;
        padding: 0 15px; /* Add side padding for grid */
    }

    .philosophy-card-v2 {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .philosophy-card-number {
        font-size: 4rem;
        top: -10px;
        right: 15px;
    }

    .philosophy-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 24px;
    }

    .philosophy-card-icon svg {
        width: 24px;
        height: 24px;
    }

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

    .philosophy-card-v2 p {
        font-size: 1rem;
    }

    .philosophy-featured {
        padding: 0 15px;
        margin-top: 50px;
    }

    .philosophy-featured-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .philosophy-featured-content::before {
        font-size: 5rem;
        top: 10px;
        left: 20px;
    }

    .philosophy-featured-content::after {
        font-size: 5rem;
        bottom: -20px;
        right: 20px;
    }

    .philosophy-featured-content blockquote {
        font-size: 1.25rem;
    }
}

/* =========================================
   About Page: The Space and Atmosphere Section
   ========================================= */

.about-space-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern - Subtle & Artistic */
.about-space-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 25%);
    pointer-events: none;
}

.about-space-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.about-space-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #222;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.about-space-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
}

.about-space-divider::before,
.about-space-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.about-space-divider::before {
    left: -12px;
}

.about-space-divider::after {
    right: -12px;
}

.about-space-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-space-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-space-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.about-space-card:hover::before {
    opacity: 1;
}

.about-space-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-space-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .about-space-section {
        padding: 80px 0;
    }
    
    .about-space-card {
        padding: 40px 30px;
        min-height: auto; /* Allow height to adjust naturally */
    }
}

@media (max-width: 768px) {
    .about-space-header {
        margin-bottom: 50px;
    }

    .about-space-header h2 {
        font-size: 2.2rem; /* Adjusted for tablet/mobile */
    }

    .about-space-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-space-card {
        padding: 35px 25px;
        text-align: center; /* Center align for a balanced mobile view */
        display: block; /* Stack content naturally */
    }
    
    .about-space-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-space-card p {
        font-size: 1.05rem;
    }

    .about-space-card:hover {
        transform: translateY(-5px); /* Reduce movement on touch devices */
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .about-space-section {
        padding: 40px 0;
    }

    .about-space-header {
        margin-bottom: 40px;
    }

    .about-space-header h2 {
        font-size: 1.8rem; /* Smaller heading for phone screens */
        margin-bottom: 15px;
    }

    .about-space-divider {
        width: 50px;
        height: 2px;
    }

    .about-space-divider::before, 
    .about-space-divider::after {
        width: 4px;
        height: 4px;
        top: 50%;
        margin-top: -2px; /* Center manually */
    }

    .about-space-divider::before {
        left: -8px;
    }

    .about-space-divider::after {
        right: -8px;
    }

    .about-space-grid {
        gap: 20px;
    }

    .about-space-card {
        padding: 30px 20px;
        border-radius: 20px; /* Slightly tighter radius */
    }

    .about-space-card h3 {
        font-size: 1.35rem; /* Ensure headers don't wrap awkwardly */
    }
}

/* About Extended Section (Community & Journey) - Professional Light Design */
.about-extended-section {
    padding: 60px 0;
    background-color: #FDFBF7; /* Soft Premium Light Background */
    position: relative;
    overflow: hidden;
}

.about-extended-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.about-extended-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    padding: 0 20px;
    z-index: 1;
}

.about-extended-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #1A1A1A;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.about-extended-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.about-extended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-extended-card {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.about-extended-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-extended-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.about-extended-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(253, 251, 247, 1);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* .about-extended-card:hover .card-icon-wrapper {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
} */

.card-icon-wrapper svg {
    transition: transform 0.3s ease;
}

/* .about-extended-card:hover .card-icon-wrapper svg {
    transform: scale(1.1);
} */

.about-extended-card h3 {
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.about-extended-card p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-extended-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-extended-card {
        padding: 40px 30px;
        flex-direction: row; /* Align icon and text side-by-side on tablet/large phone for better use of vertical space? No, stack is better usually. Let's keep stack but refine. */
        align-items: flex-start;
        text-align: left;
    }
    
    .card-icon-wrapper {
        margin-bottom: 25px;
    }

    .about-extended-header h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .about-extended-section {
        padding: 40px 0;
    }
    
    .about-extended-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .about-extended-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-extended-divider {
        width: 40px;
        height: 3px;
    }

    .about-extended-card {
        padding: 30px 25px;
        flex-direction: column;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .about-extended-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .about-extended-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}


/* =========================================
   Contact Page - Reservations & Inquiries 
   Premium Section Styling
   ========================================= */
.inquiries-section {
    padding: 100px 0;
    background-color: #FDFBF8; /* Soft sophisticated warm light */
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.inquiries-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.inquiries-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.inquiries-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.inquiries-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1A1A1A;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.inquiries-intro {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inquiries-card {
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.inquiries-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08); /* Sophisticated lift */
    border-color: rgba(212, 175, 55, 0.15); /* Subtle gold border on hover */
}

.contact-details-row {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item-box {
    flex: 1;
    min-width: 250px;
    background: #FAFAFA;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item-box:hover {
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary);
}

.inquiries-footer-text {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.inquiries-footer-text::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 20px;
    opacity: 0.5;
}

/* Mobile Responsiveness */
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .inquiries-section {
        padding: 60px 0;
    }

    .inquiries-container {
        padding: 0 20px;
    }

    .inquiries-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .inquiries-card {
        padding: 40px 24px;
        gap: 30px;
    }

    .contact-details-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item-box {
        width: 100%;
        padding: 20px;
        justify-content: flex-start; /* Align left for better readability on mobile */
    }
}

@media (max-width: 480px) {
    .inquiries-section h2 {
        font-size: 2rem; /* Smaller heading for mobile */
    }

    .inquiries-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-item-box {
        padding: 15px;
        gap: 15px;
    }

    .contact-icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .contact-value {
        font-size: 1rem; /* Adjust font size to fit phone numbers */
    }

    .inquiries-footer-text {
        font-size: 0.95rem;
    }
}

/* Contact Page Premium Styles */
.contact-premium-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.contact-premium-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-premium-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.contact-premium-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-premium-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-main);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.contact-premium-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-premium-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}



.contact-card-content {
    flex-grow: 1;
    z-index: 1;
}

.contact-card-content h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-card-value {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 700;
    display: block;
    line-height: 1.3;
    font-family: var(--font-heading);
}

/* Social Card Specifics */
.social-card {
    grid-column: 1 / -1;
}

.social-links-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.social-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.social-platform-btn svg {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-platform-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.social-platform-btn:hover svg {
    color: #000;
}

.contact-premium-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.contact-premium-footer::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    margin: 0 auto 30px;
}

.contact-premium-footer p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 992px) {
    .contact-premium-section {
        padding: 80px 0;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-premium-card {
        padding: 30px;
    }
    
    .social-card {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .social-links-container {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .social-platform-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-premium-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-premium-intro {
        font-size: 1.05rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-value {
        font-size: 1.1rem;
    }
}

/* Feedback & Reviews Section - Premium Styling */
.feedback-premium-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFCF7 0%, #FDFBF0 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle background accent */
.feedback-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#D4AF37 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.feedback-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feedback-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #1A1A1A;
    margin-bottom: 30px;
    font-weight: 800;
}

.feedback-lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.feedback-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Reservation Guide Section - Premium Info Cards */
.reservation-guide-section {
    padding: 100px 0;
    background-color: #F9F7F4; /* Light warm beige matching theme */
    position: relative;
    overflow: hidden;
}

.reservation-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d4af37 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.reservation-guide-section .section-header {
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
}

.reservation-guide-section h2 {
    color: #1A1A1A;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.header-divider-gold {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.reservation-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.reservation-guide-card {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.reservation-guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.reservation-guide-card:hover::before {
    opacity: 1;
}

.guide-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

/* .reservation-guide-card:hover .guide-icon-wrapper {
    background: var(--primary);
    color: #FFFFFF;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.25);
} */

.reservation-guide-card h3 {
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 700;
}

.reservation-guide-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reservation-guide-section {
        padding: 60px 0;
    }

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

    .reservation-guide-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .reservation-guide-card {
        padding: 35px 30px;
    }
}

@media (max-width: 480px) {
    .reservation-guide-section h2 {
        font-size: 2rem;
    }

    .reservation-guide-card {
        padding: 30px 24px;
    }

    .guide-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .guide-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .reservation-guide-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .reservation-guide-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Reservation Types Section - Clean & Distinct */
.reservation-types-section {
    padding: 100px 0;
    background-color: #FDFBF9; /* Distinct premium light background */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.reservation-types-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.reservation-types-section .section-header {
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
}

.reservation-types-section h2 {
    color: #1A1A1A;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.card-subtitle {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

/* Mobile Responsiveness for Reservation Types */
@media (max-width: 768px) {
    .reservation-types-section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .reservation-types-section h2 {
        font-size: 2rem;
    }
}


/* Real Visitor Experiences - Premium Design */
.reviews-grid {
    display: block; /* Standard block display for columns */
    column-count: 3;
    column-gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.review-card {
    background: linear-gradient(145deg, #1A1A1A, #121212);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px; /* For masonry spacing */
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    page-break-inside: avoid; /* Firefox */
    break-inside: avoid; /* IE 10+ */
    break-inside: avoid-column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.05);
    background: linear-gradient(145deg, #222222, #151515);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.review-stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 4px;
}

.review-content {
    color: #BBBBBB;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.review-card::after {
    content: '“';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
    .reviews-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        column-count: 1;
    }
}

/* Common Mentions Section */
.common-mentions-wrapper {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05); /* Subtle separation */
    padding-top: 40px;
}

.common-mentions-wrapper .section-header {
    margin-bottom: 50px;
}

.common-mentions-wrapper h3 {
    color: #1A1A1A; /* Ensure visible on light background */
    font-size: 2rem;
    margin-bottom: 15px;
}

.common-mentions-wrapper .section-lead {
    color: #555555;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.mentions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.mention-card {
    background: #FFFFFF;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 450px;
}

.mention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.mention-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mention-card h4 {
    color: #333;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.mentions-footer {
    color: #777;
    font-size: 1.1rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mentions-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .mention-card {
        width: 100%;
        max-width: 100%;
    }
}

/* ==============================================
   MENU BOOK SLIDER - Premium Book-Style Flip
   ============================================== */

.menu-book-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #FDFBF8 0%, #F8F5F0 50%, #FDFBF8 100%);
    position: relative;
    overflow: hidden;
}

.menu-book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.book-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.book-section-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.book-section-header h2 {
    color: #1A1A1A;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.book-section-lead {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Book Wrapper */
.book-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* The Book Container */
.book {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 2/3;
    position: relative;
    perspective: 2000px;
    cursor: grab;
    transform-style: preserve-3d;
    background: transparent;
    border-radius: 16px;
    overflow: visible;
}

/* Book Shadow */
.book::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 35px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(12px);
    z-index: -1;
}

/* Individual Book Page */
.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.4s ease;
    cursor: pointer;
    border-radius: 16px;
    background: transparent;
    opacity: 1;
}

.book-page.flipped {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Page Front */
.page-front {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.page-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 16px;
}

.page-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.book-page:hover .page-image-container img {
    transform: scale(1.02);
}

/* Page Overlay with Info */
.page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 30px 30px;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.6) 40%, 
        transparent 100%);
    color: #fff;
    text-align: left;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.page-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-weight: 400;
}

/* Page Back - Hidden for clean transitions */
.page-back {
    display: none;
}

.page-back-pattern {
    display: none;
}

.page-back-pattern::before {
    display: none;
}

.page-back-pattern::after {
    display: none;
}

/* Book Spine - Hidden for clean look */
.book::after {
    display: none;
}

/* Navigation Controls */
.book-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.book-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.book-nav-btn:hover:not(:disabled) {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.book-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.book-nav-btn svg {
    width: 18px;
    height: 18px;
}

.page-indicator {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    min-width: 80px;
    text-align: center;
}

.page-indicator span:first-child {
    color: var(--primary-dark);
    font-size: 1.4rem;
}

/* Thumbnails */
.book-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.book-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.book-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.book-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.book-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 80px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    padding: 0;
    background: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.book-thumbnail:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.book-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--primary), 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.book-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-book-section {
        padding: 80px 0 100px;
    }
    
    .book {
        max-width: 500px;
    }
    
    .book-navigation {
        gap: 20px;
    }
    
    .book-nav-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .book-nav-btn span {
        display: none;
    }
    
    .book-nav-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .menu-book-section {
        padding: 60px 0 80px;
    }
    
    .book-section-header {
        margin-bottom: 40px;
    }
    
    .book {
        max-width: 90%;
        aspect-ratio: 3/4;
    }
    
    .page-overlay {
        padding: 30px 20px 20px;
    }
    
    .page-title {
        font-size: 1.3rem;
    }
    
    .page-description {
        font-size: 0.85rem;
    }
    
    .book-navigation {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .book-nav-btn {
        padding: 12px 18px;
    }
    
    .book-thumbnails {
        padding: 15px;
        gap: 8px;
    }
    
    .book-thumbnail {
        width: 50px;
        height: 66px;
    }
}

@media (max-width: 480px) {
    .menu-book-section {
        padding: 50px 0 60px;
    }
    
    .book-section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .book-section-header h2 {
        font-size: 1.6rem;
    }
    
    .book-section-lead {
        font-size: 1rem;
    }
    
    .book {
        max-width: 95%;
    }
    
    .page-number {
        font-size: 0.7rem;
    }
    
    .page-title {
        font-size: 1.15rem;
    }
    
    .page-description {
        font-size: 0.8rem;
    }
    
    .book-navigation {
        gap: 10px;
    }
    
    .page-indicator {
        font-size: 0.95rem;
        min-width: 60px;
    }
    
    .page-indicator span:first-child {
        font-size: 1.1rem;
    }
    
    .book-thumbnail {
        width: 45px;
        height: 60px;
        border-radius: 6px;
    }
}

/* Animation Enhancements */
@keyframes pageFlipShadow {
    0% { box-shadow: 4px 0 15px rgba(0,0,0,0.1); }
    50% { box-shadow: 15px 0 30px rgba(0,0,0,0.25); }
    100% { box-shadow: 4px 0 15px rgba(0,0,0,0.1); }
}

.book-page.flipped .page-front {
    animation: pageFlipShadow 0.8s ease;
}

/* Hover hint for interaction */
.book-wrapper::after {
    content: 'Swipe or drag to flip pages';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book:hover + .book-navigation + .book-thumbnails + .book-wrapper::after,
.book-wrapper:hover::after {
    opacity: 1;
}

/* Menu Section Specifics */
.menu-subheading {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.menu-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.menu-list li {
    margin-bottom: 0.5rem;
    padding-left: 5px;
}

.menu-list li::marker {
    color: var(--primary);
}

.menu-time-block {
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 2px solid var(--primary-light);
}

.menu-time-block h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.menu-time-block p {
    margin-bottom: 0;
    font-size: 1.05rem;
}
