:root {
    /* Color Palette - V4 Modern Corporate */
    --bg-main: #0B0B0C;
    /* Rich Charcoal */
    --bg-card: #141415;
    /* Slightly Lighter Charcoal */
    --bg-card-hover: #1A1A1C;

    --accent-champagne: #E5D3B3;
    /* Elegant Desaturated Gold */
    --accent-champagne-dim: #9E8C6B;

    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    /* Neutral Grey */
    --text-muted: #555555;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(229, 211, 179, 0.4);

    /* Fonts */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --gap-sm: 10px;
    --gap-md: 20px;
    --gap-lg: 40px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar - Subtle Gold */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-champagne-dim);
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-champagne);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-champagne-dim) var(--bg-main);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: -0.02em;
    /* Tight modern tracking */
    color: var(--text-primary);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.serif-accent {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-champagne);
    font-weight: 400;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utility layout */
.container {
    max-width: 1400px;
    /* Wide editorial width */
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

/* Button - Modern Corporate Pill */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--text-primary);
    color: var(--bg-main);
    border-radius: 100px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover {
    background: var(--accent-champagne);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Sticky Pill Navigation */
#main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: min(90vw, 980px);
    z-index: 1000;
    background: rgba(11, 11, 12, 0.85);
    /* Glassy Charcoal */
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 10px 44px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}

#main-header .container {
    display: flex;
    align-items: center;
    gap: 54px;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    width: 100%;
}

.logo a {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

#main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    white-space: nowrap;
}

#main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

#main-nav a:hover,
#main-nav a.active {
    color: var(--text-primary);
}

/* Status Dot (Minimal) */
.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 100px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #555;
}

.status-open .dot {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.status-open {
    color: #fff;
}

.status-closed .dot {
    background: #FF4D4D;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
}

.status-closed {
    color: #aaa;
}

/* Hero Review Widget - Refined Modern Style */
.hero-review-widget {
    display: inline-flex;
    align-items: center;
    background: rgba(11, 11, 12, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(to right, #4285F4, #34A853, #FBBC05, #EA4335);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 100px;
    padding: 10px 24px;
    margin-top: 40px;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-review-widget:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(var(--bg-card-hover), var(--bg-card-hover)),
        linear-gradient(to right, #EA4335, #FBBC05, #34A853, #4285F4);
}

.hero-review-widget .google-logo {
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.hero-review-widget .stars {
    color: #FFD200;
    /* Vibrant Yellow/Gold */
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.3);
}

.hero-review-widget .review-info-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-review-widget .rating-val {
    font-weight: 700;
}

.hero-review-widget .reviews-count {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.8rem;
}

.hero-review-widget .review-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.hero-review-widget .review-btn:hover {
    background: var(--text-primary);
    color: var(--bg-main);
}

@media (max-width: 768px) {
    .hero-review-widget {
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
    }
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    /* Offset for header */
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: var(--gap-md);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s, background 0.3s;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    border-color: var(--border-focus);
    background: var(--bg-card-hover);
}

/* Span Utilities */
.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.span-4 {
    grid-column: span 4;
}

.row-span-2 {
    grid-row: span 2;
}

/* Image Cards */
.bento-card.image-card {
    padding: 0;
}

.bento-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover img {
    transform: scale(1.05);
}

.upcoming-event-card:hover img {
    transform: none !important;
}

.card-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

/* Double Experience / Benefit Grid Styles */
.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 35px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-champagne-dim);
    transform: translateY(-5px);
}

.benefit-item .icon-wrapper {
    color: var(--accent-champagne);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.benefit-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.benefit-item ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.benefit-item ul li i {
    color: var(--accent-champagne);
    margin-right: 12px;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

/* Celebrations Grid */

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.celebration-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.celebration-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.celebration-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.celebration-card:hover .celebration-img img {
    transform: scale(1.05);
}

.celebration-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.celebration-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-champagne);
}

.celebration-content p {
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .celebrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .celebrations-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Section */
#menu {
    padding-top: 60px;
    /* Reduced from 120px to close gap with celebrations */
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.info-block {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.info-block h4 {
    color: var(--accent-champagne);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Footer (Corporate Style) */
footer {
    border-top: 1px solid var(--border-light);
    background: var(--bg-main);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #444;
}

.footer-bottom span:first-child {
    order: 1;
}

.footer-collaboration {
    order: 2;
    text-align: center;
}

.footer-bottom span:last-of-type {
    order: 3;
}

.footer-collaboration img {
    max-height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-collaboration img:hover {
    transform: scale(1.05);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
}

/* ── Language Selector ────────────────────── */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    border-radius: 100px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--border-focus);
}

.lang-btn i.fa-globe {
    font-size: 0.8rem;
    opacity: 0.7;
}

.lang-arrow {
    font-size: 0.55rem;
    transition: transform 0.25s;
    opacity: 0.6;
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(14, 14, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    min-width: 130px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.97);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 500;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.lang-option.lang-active {
    color: var(--accent-champagne);
    background: rgba(229, 211, 179, 0.04);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--accent-champagne);
    font-size: 1.5rem;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-primary);
}

/* PDF Modal Specific Styles */
.pdf-modal-content {
    max-width: 1600px;
    width: 98%;
    height: 94vh;
    padding: 60px 20px 20px 20px;
    display: flex;
    flex-direction: column;
}

.pdf-container {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .pdf-modal-content {
        padding: 50px 10px 10px 10px;
        height: 85vh;
    }
}


/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding-top: 40px;
}

/* Reduce gap between Celebrations → Menu */
#experience {
    padding-bottom: 40px;
}

#menu {
    padding-top: 40px;
    padding-bottom: 40px;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.map-address {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.map-address i {
    color: var(--accent-champagne);
    margin-right: 6px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    width: 100%;
    line-height: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%) contrast(1.05);
}

.map-actions {
    text-align: center;
    margin-top: 30px;
}

/* ============================================
   GALLERY CAROUSEL SECTION
   ============================================ */
.gallery-section {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.gallery-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Full-width carousel */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    align-items: center; /* Prevent vertical stretching */
    gap: 16px;
    padding: 0 40px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    width: auto; /* width set dynamically by JS */
    height: auto; /* Allow aspect-ratio to control height */
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: border-color 0.3s;
}

.carousel-slide:hover {
    border-color: var(--border-focus);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.85);
}

.carousel-slide:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* Nav Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.carousel-btn:hover {
    background: var(--accent-champagne);
    color: var(--bg-main);
    border-color: var(--accent-champagne);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn-prev {
    left: 16px;
}

.carousel-btn-next {
    right: 16px;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-bottom: 10px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: background 0.3s, transform 0.3s, width 0.3s;
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    background: var(--accent-champagne);
    width: 20px;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 640px) {
    .gallery-title {
        font-size: 2.5rem;
    }

    .carousel-track {
        padding: 0;
        gap: 12px;
    }
}