@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
    --pure-black: #000000;
    --pure-white: #ffffff;
    --warm-white: #fefefe;
    --cool-gray: #f5f5f5;
    --medium-gray: #999999;
    --dark-gray: #333333;
    --electric-blue: #00ccff;
    --deep-red: #cc0000;
    --golden-yellow: #ffcc00;
    --neon-pink: #ff1493;
    --bright-pink: #ff69b4;
    --neon-magenta: #ff0080;
    --neon-green: #39ff14;
    --neon-red: #d1001f;
    --neon-red-glow: #ff0033;
    --film-grain: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="2" height="2" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.2" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    
    /* Bronze Button Colors */
--bronze: #cd7f32;
--bronze-light: #daa520;
--bronze-dark: #8b4513;
--bronze-highlight: #ffa500;
--bronze-shadow: #654321;
--bronze-text: #2c1810;
--bronze-text-light: #4a2c1a;
    --mahogany: #4b2e22;
    --mahogany-dark: #331a12;
    --mahogany-light: #7c4a2d;
    --warm-cream: #f5e9da;
    --gold: #ffd700;
    --gold-light: #ffe066;
    --gold-dark: #bfa100;
    --brown-plaster: url('images/navy_wall.png');
    --navy-wall: url('images/navy_wall.png');
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    background:
        url('images/gold_foil.png'),
        var(--film-grain);
    background-size: cover, auto;
    background-blend-mode: normal, normal;
    z-index: 1000;
    padding: 1rem 2rem;
    border: 0.5px solid var(--gold-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0;
}

.address-info {
    text-align: right;
}

.address-info a {
    color: var(--pure-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.address-info a:hover {
    color: var(--gold);
}

/* Adjust body top margin to account for fixed navbar */
body {
    padding-top: 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.4;
    color: var(--warm-cream);
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.45) 100%),
        var(--navy-wall),
        var(--film-grain);
    background-blend-mode: multiply, normal, normal;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    color: var(--gold);
}



.reserve-btn {
    background: url('images/blue_velvet_button.png') center/cover no-repeat;
    background-size: 100% 100%;
    color: var(--pure-white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    text-decoration: none;
}

.reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.reserve-btn:hover {
    /* keep the same background image and sizing as normal state */
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: var(--pure-white);
    border-color: transparent;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 100, 200, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reserve-btn:hover::before {
    left: 100%;
}

.reserve-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section - Cinematic and dramatic with flamingo elements */
.hero {
    height: 100vh;
    background-size: cover;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--film-grain);
    opacity: 0.6;
    animation: filmGrain 0.3s steps(4) infinite;
    pointer-events: none;
}

@keyframes filmGrain {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-1px, 0) rotate(0.01deg); }
    50% { transform: translate(1px, -1px) rotate(-0.01deg); }
    75% { transform: translate(0, 1px) rotate(0.01deg); }
}

/* Removed decorative blue gradient overlay previously applied via .hero::after */

/* Hero video styling */
.hero-video {
    position: absolute;
    top: 40%;
    right: 0;
    width: 100vw;
    height: auto;
    transform: translateY(-40%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: contrast(1.2) brightness(1.1);
}

/* Abstract flamingo curves in hero */
.hero-content::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: url('images/flamingo-abstract.svg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-content {
    text-align: right;
    color: var(--pure-white);
    z-index: 2;
    position: absolute;
    bottom: 8rem;
    right: 8rem;
    max-width: 400px;
}







@keyframes slideInLeft {
    to { transform: translateX(0); }
}

@keyframes slideInRight {
    to { transform: translateX(0); }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    justify-content: flex-end;
}

/* Buttons - Minimalist and sharp */
.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border: 1px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bronze-light) 0%, var(--bronze) 50%, var(--bronze-dark) 100%);
    color: var(--bronze-text);
    border-color: var(--bronze-dark);
    opacity: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bronze-highlight) 0%, var(--bronze-light) 50%, var(--bronze) 100%);
    color: var(--bronze-text);
    border-color: var(--bronze-highlight);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(205, 127, 50, 0.4);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--pure-white);
    transform: translateY(-2px);
}

/* Sections - Asymmetrical and breathing */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background:
        url('images/wavy_stripes.png') center/cover no-repeat,
        var(--film-grain);
    background-blend-mode: normal, normal;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* About Section - Offset grid with flamingo accent */
.about {
    background: url('images/navy_wall.png');
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--navy-wall);
}

/* Flamingo curve accent in about section */
.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 70%;
    width: 200px;
    height: 200px;
    background: url('images/flamingo-abstract.svg') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    transform: rotate(-45deg);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8rem;
    align-items: start;
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.about-text {
    background: var(--navy-wall);
    z-index: 3;
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(51,26,18,0.08);
    padding: 3rem 4rem;
    margin-left: -4rem; /* counteracts the original padding-left */
    margin-bottom: 2rem;
}

.about h2 {
    font-size: clamp(3rem, 6vw, 8rem);
    margin-bottom: 3rem;
    color: var(--pure-black);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 35ch;
}

.about p a {
    color: var(--medium-gray);
    text-decoration: none;
}

.about p a:hover,
.about p a:focus,
.about p a:visited {
    color: var(--medium-gray);
    text-decoration: none;
}



.about-image {
    position: relative;
    margin-top: -2rem;
}

.image-placeholder {
    background: var(--brown-plaster);
    background-size: cover;
    background-blend-mode: normal;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-style: italic;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder:not(.gold-frame):not(.gold-frame-glow) {
    border: 1px solid var(--medium-gray);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--film-grain);
    opacity: 0.3;
}

/* Menu Section - Stark and centered with flamingo accent */
.menu {
    background: url('images/velvet_stools.png');
    background-repeat: repeat;
    background-position: 0px 94px;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden; /* prevent page-level horizontal scroll */
}

/* Removed the decorative blue center line in the menu section */
.menu::before {
    content: none;
}

/* Flamingo silhouette accent */
.menu::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: url('images/flamingo-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.menu h2 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.menu-content {
    padding: 3rem 10rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Horizontal carousel styling for menu images (reuse events carousel) */
.menu .events-carousel { position: relative; width: 100%; box-sizing: border-box; }
.menu .events-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: var(--carousel-edge-pad, 0);
    padding-right: var(--carousel-edge-pad, 0);
    scroll-padding-left: var(--carousel-edge-pad, 0);
    scroll-padding-right: var(--carousel-edge-pad, 0);
}
.menu .events-grid.is-interacting { scroll-snap-type: x proximity; }
.menu .events-grid > * { flex-shrink: 0; }
.menu .event-card { flex: 0 0 min(85vw, 720px); min-width: min(85vw, 720px); scroll-snap-align: center; }
@media (min-width: 768px) { .menu .event-card { flex-basis: min(60vw, 720px); min-width: min(60vw, 720px); } }
@media (min-width: 1200px) { .menu .event-card { flex-basis: min(42vw, 720px); min-width: min(42vw, 720px); } }
.menu .events-dots { display: flex; gap: 8px; position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.2rem; z-index: 3; }
.menu .events-dots__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.4); transition: all 0.2s ease; cursor: pointer; }
.menu .events-dots__dot.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

.menu-placeholder {
    width: 400px;
    height: 600px;
    background: url('images/navy_wall.png');
    background-size: cover;
    background-blend-mode: normal;
    aspect-ratio: 3/4;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-style: italic;
    gap: 0.5rem;
    overflow: hidden;
}

.menu-img, .about-img {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive adjustments for menu image */
@media (max-width: 768px) {
    .menu-img, .about-img {
        width: 92vw;
        max-width: 640px;
        height: auto;
    }
    
    /* Navbar Mobile Adjustments */
    .navbar {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .address-info a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-img, .about-img {
        width: 92vw;
        max-width: 420px;
        height: auto;
    }
    

}

/* Music Section - Grid with floating elements and flamingo curves */
.music {
    background: url('images/navy_wall.png') center/cover no-repeat;
    background-blend-mode: normal;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.music .container {
    max-width: 1400px; /* Constrain so navy edges are visible on desktop */
    /* Leave a small navy gutter on each side on desktop */
    width: calc(100% - 4rem);
    margin: 0 auto; /* Center within the navy background */
    padding: 3rem 6rem; /* Increase horizontal padding for more space from edges */
    background: url('images/wavy_stripes.png') center/cover no-repeat, var(--film-grain);
    background-blend-mode: overlay, normal;
}

.events::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 30%;
    height: 60%;
    background: var(--deep-red);
    opacity: 0.05;
    transform: rotate(45deg);
}

/* Flamingo curves in music */
.music::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: url('images/flamingo-abstract.svg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(30deg);
    pointer-events: none;
    filter: invert(1);
}

.events h2 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    margin-bottom: 4rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 50%;
}

.events-grid {
    display: flex !important;
    gap: 2rem;
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding: 4rem; /* align with .container horizontal padding */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    cursor: grab;
}

/* Ensure horizontal layout in the music section on all devices */
.music .events-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    /* Use dynamic edge padding at all breakpoints so first/last cards center correctly */
    padding-left: var(--carousel-edge-pad, 0);
    padding-right: var(--carousel-edge-pad, 0);
    scroll-padding-left: var(--carousel-edge-pad, 0);
    scroll-padding-right: var(--carousel-edge-pad, 0);
}

/* Reduce snap aggressiveness while interacting to avoid jump-backs */
.events-grid.is-interacting { scroll-snap-type: x proximity; }

/* Ensure flex children stay on one line and keep width */
.events-grid > * {
    flex-shrink: 0;
}

.event-card {
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    flex: 0 0 85vw; /* mobile-first: show mostly one card */
    min-width: 85vw;
    scroll-snap-align: center;
}

/* Remove staggered vertical offsets and heavy hover transforms for carousel */
.event-card:nth-child(2),
.event-card:nth-child(3) {
    transform: none;
}

.event-card:hover {
    transform: none;
}

.event-image {
    margin-bottom: 2rem;
    /* Removed aspect-ratio to allow natural image dimensions */
    min-height: 0; /* Let content drive height; prevents cropped halves while loading */
}

/* Horizontal scrollbar styling for the carousel */
.events-grid::-webkit-scrollbar {
    display: none;
}

/* Responsive sizing for carousel items */
@media (min-width: 768px) {
    .event-card { flex-basis: 45vw; min-width: 45vw; }
}
@media (min-width: 1200px) {
    .event-card { flex-basis: 32vw; min-width: 32vw; }
}

/* --- Carousel wrapper and affordances --- */
.events-carousel {
    position: relative;
    padding-bottom: 1.25rem;
}



.events-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.75rem;
    z-index: 3;
}
.events-dots__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.2s ease;
    cursor: pointer;
}
.events-dots__dot:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.6);
}
.events-dots__dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Event flyer images from Contentful */
.event-flyer {
    width: 100%;
    height: auto; /* allow intrinsic height to prevent partial rendering */
    object-fit: contain; /* show full image */
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.event-flyer:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Ensure event image container doesn't have overlapping content */
.event-card .event-image {
    position: relative;
    overflow: visible; /* Changed from 'hidden' to 'visible' to prevent cropping */
    padding: 0; /* Remove any padding that might cause issues */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific styling for Contentful flyer images */
.event-card .event-image .event-flyer {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Loading placeholder */
.loading-placeholder .image-placeholder {
    background: linear-gradient(135deg, var(--navy-wall), var(--deep-red));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Event details styling - removed since we only display flyer images */



.events-hint {
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    color: var(--pure-white);
    font-size: 0.75rem;
    line-height: 1;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.events-hint.is-visible { opacity: 1; transform: translateY(0); }
.events-hint__chevrons {
    position: relative;
    width: 18px; height: 10px;
}
.events-hint__chevrons::before,
.events-hint__chevrons::after {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 8px; height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.8;
    animation: nudgeRight 1.2s ease-in-out infinite;
}
.events-hint__chevrons::after { left: 6px; animation-delay: 0.3s; }
@keyframes nudgeRight {
    0% { transform: translate(0, -50%) rotate(45deg); opacity: 0; }
    20% { opacity: 1; }
    60% { transform: translate(6px, -50%) rotate(45deg); opacity: 1; }
    100% { transform: translate(10px, -50%) rotate(45deg); opacity: 0; }
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.event-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

/* Contact Section - Split personality with flamingo accent */
.contact {
    background: var(--navy-wall);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Tighten vertical spacing around the contact section on desktop */
@media (min-width: 769px) {
    section.contact {
        padding-top: 3rem; /* override the global 8rem */
        padding-bottom: 4rem;
    }

    .contact > .container {
        padding-top: 1rem; /* override the container 3rem top/bottom */
        padding-bottom: 1rem;
    }
}



.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 95%;
    margin: 0 auto;
    background: url('images/cherry_wood_dark.png') center/cover no-repeat;
    background-size: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--pure-white);
    text-align: left;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

/* Desktop-specific adjustments for contact section */
@media (min-width: 769px) {
    .contact-grid {
        padding: 1.5rem 2rem;
        max-width: 85%;
    }
    
    .contact-details {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .contact-item {
        text-align: left;
        margin-bottom: 0;
    }
    
    /* Move the location column slightly to the right on desktop only */
    .contact-item[data-label="location"] {
        margin-left: 0;
    }
    
    /* Ensure hours columns are properly sized */
    .contact-item[data-label="hours"] {
        grid-column: span 1;
    }
}

/* Mobile-specific adjustments for contact section */
@media (max-width: 768px) {
    .contact-grid {
        max-width: 95%;
        padding: 1rem;
        flex-direction: column;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: center;
        padding-top: 1rem;
    }

    .contact-item {
        text-align: center;
        margin-bottom: 0;
    }
    
    /* Add space above and below the cherry wood panel on mobile */
    .contact > .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Underline address and email to indicate tap targets on mobile */
    .contact-item[data-label="location"] a,
    .contact-item[data-label="contact"] a {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 0.02px;
        color: var(--pure-white);
    }
    .contact-item[data-label="location"] a:visited,
.contact-item[data-label="contact"] a:visited,
.contact-item[data-label="location"] a:focus,
.contact-item[data-label="contact"] a:focus,
.contact-item[data-label="location"] a:active,
.contact-item[data-label="contact"] a:active,
    .contact-item[data-label="location"] a:hover,
.contact-item[data-label="contact"] a:hover {
    text-decoration: underline;
    color: var(--pure-white);
}


}





.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.contact-item p {
    color: var(--pure-white);
    font-size: 1.3rem;
    line-height: 1.6;
    white-space: nowrap;
}

.contact-item a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Match color of About section links for address and email across all sizes */
.contact-item[data-label="location"] a,
.contact-item[data-label="contact"] a {
    color: var(--pure-white);
}
.contact-item[data-label="location"] a:visited,
.contact-item[data-label="contact"] a:visited,
.contact-item[data-label="location"] a:focus,
.contact-item[data-label="contact"] a:focus,
.contact-item[data-label="location"] a:active,
.contact-item[data-label="contact"] a:active,
.contact-item[data-label="location"] a:hover,
.contact-item[data-label="contact"] a:hover {
    color: var(--pure-white);
}

/* Restore hover color change for location and email on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
    .contact-item[data-label="location"] a:hover,
    .contact-item[data-label="contact"] a:hover {
        color: var(--gold);
    }
}

/* Make the cherry wood background 70% opacity without affecting content */
.contact-grid {
    position: relative;
    background: none;
}
.contact-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/cherry_wood_dark.png') center/cover no-repeat;
    opacity: 0.95;
    border-radius: 8px;
    z-index: 0;
}
.contact-grid > * {
    position: relative;
    z-index: 1;
}

/* Match color for hours text as well */
.contact-item[data-label="hours"] p {
    color: var(--pure-white);
}

.contact-item[data-label="hours"] p strong {
    font-weight: 600;
}

/* Mobile-only hours table styling - hidden on desktop */
@media (max-width: 768px) {
    .contact-item[data-label="hours-sun"],
    .contact-item[data-label="hours-fri"] {
        display: none !important;
    }
    
    .contact-item[data-label="hours"] {
        display: block !important;
    }
    
    .hours-table {
        margin-top: 0.75rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hours-row {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1rem;
        padding: 0.4rem 0;
    }
    
    .hours-row .day {
        font-weight: 600;
        color: var(--pure-white);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 1rem;
    }
    
    .hours-row .time {
        color: var(--pure-white);
        text-align: left;
        font-size: 1rem;
    }
}

































/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content {
        top: 50%;
        right: 4rem;
        transform: translateY(-50%);
        max-width: 300px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .events-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    /* Make music carousel span full-bleed on tablets */
    .music .container { 
        padding-left: 0; 
        padding-right: 0; 
        background: url('images/wavy_stripes.png') center/cover no-repeat, var(--film-grain);
        background-blend-mode: overlay, normal;
        max-width: none;
        width: 100%;
    }
    .music .events-grid { scroll-padding: 0; }
    
    .event-card:nth-child(2),
    .event-card:nth-child(3) {
        transform: none;
    }
    
    .contact {
        background: var(--navy-wall);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    

    
    /* Hide flamingo decorations on smaller screens for cleaner look */
    .hero-content::before,
    .about::after,
    .menu::after,
    .events::after,
    .contact::before,
    .footer::before {
        display: none;
    }
    
    /* Scale down video on tablets */
    .hero-video {
        width: 80vw;
        right: 10%;
    }
}

@media (max-width: 768px) {
    
    .hero-content {
        top: auto;
        bottom: 8rem;
        left: 2rem;
        right: 2rem;
        transform: none;
        max-width: none;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.8rem;
        justify-content: flex-end;
        
    }
    
    .hero-buttons a.btn-primary, .hero-buttons a.btn-secondary {
        padding: 1rem 2rem;
        min-width: 150px;
        min-height: 55px;
        font-size: 0.85rem;
    }
    

    
    section {
        padding: 4rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-self: center;
    }
    
    /* Make video fill hero container on mobile */
    .hero-video {
        width: 100vw;
        height: 100vh;
        top: -5%;
        right: 0;
        left: 0;
        transform: none;
        object-fit: cover;
        opacity: 0.8;
    }

    /* Make music carousel span full-bleed on phones and center items on snap */
    .music .container {
        padding-top: 1.5rem;
        padding-left: 0;
        padding-right: 0;
        background: url('images/wavy_stripes.png') center/cover no-repeat, var(--film-grain);
        background-blend-mode: overlay, normal;
        max-width: none;
        width: 100%;
    }
    .music .events-grid {
        gap: 1rem;
        padding-left: var(--carousel-edge-pad, 0);
        padding-right: var(--carousel-edge-pad, 0);
        scroll-padding-left: var(--carousel-edge-pad, 0);
        scroll-padding-right: var(--carousel-edge-pad, 0);
    }
    /* Allow freer scrolling on mobile during touch interactions */
    .events-grid.is-interacting { scroll-snap-type: x proximity; }
    .music .event-card { scroll-snap-align: center; }

    .about {
        padding: 2rem 0 !important;
        overflow-x: hidden;
        max-width: 100vw;
    }
    .about-grid {
        display: block;
        padding: 0 1rem;
        gap: 0;
        max-width: 100vw;
    }
    .about-text {
        padding: 1.5rem 1rem;
        margin-left: 0;
        margin-right: 0;
        border-radius: 1rem;
        box-shadow: 0 2px 12px 0 rgba(51,26,18,0.08);
        max-width: 100vw;
    }
    .about-image {
        margin-top: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--cool-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--pure-black);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-blue);
}

/* Gold frame effects */
.gold-frame-glow {
    padding: 1.5rem;
    border: 3px solid var(--gold-dark);
    box-shadow: 
        0 0 20px rgba(184, 134, 11, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.15),
        0 0 40px rgba(255, 215, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--navy-wall);
}

.gold-frame-glow:hover {
    border-color: var(--gold);
    box-shadow: 
        0 0 50px rgba(184, 134, 11, 0.85),
        inset 0 0 50px rgba(255, 215, 0, 0.35),
        0 0 100px rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
}

.gold-frame {
    padding: 1rem;
    border: 3px solid var(--gold-dark);
    box-shadow: 
        0 0 15px rgba(184, 134, 11, 0.35),
        inset 0 0 15px rgba(255, 215, 0, 0.08);
    transition: all 0.3s ease;
    background: var(--cool-gray);
}

.gold-frame:hover {
    border-color: var(--gold);
    box-shadow: 
        0 0 35px rgba(184, 134, 11, 0.75),
        inset 0 0 35px rgba(255, 215, 0, 0.25);
    transform: scale(1.01);
}

/* Selection styling */
::selection {
    background: var(--electric-blue);
    color: var(--pure-white);
}



.hero-buttons a.btn-primary, .hero-buttons a.btn-secondary {
    position: relative;
    z-index: 2;
    background:
        url('images/gold_foil.png'),
        var(--film-grain);
    background-size: cover, auto;
    background-blend-mode: normal, normal;
    box-shadow: 0 0 16px 2px rgba(205, 127, 50, 0.18), 0 2px 8px rgba(0,0,0,0.25);
    border-radius: 10px;
    font-weight: 600;
    color: var(--bronze) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 0 8px rgba(205,127,50,0.18);
    border: 2px solid var(--bronze-dark);
    padding: 1.3rem 2.7rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons a.btn-primary:hover, .hero-buttons a.btn-secondary:hover {
    box-shadow: 0 0 32px 4px rgba(205, 127, 50, 0.28), 0 4px 16px rgba(0,0,0,0.35);
    background:
        url('images/gold_foil.png'),
        var(--film-grain);
    background-size: cover, auto;
    background-blend-mode: normal, normal;
    color: var(--pure-white) !important;
    border-color: var(--bronze-highlight);
    transform: translateY(-2px) scale(1.02);
}

.hero-buttons a.btn-primary:active, .hero-buttons a.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}



.about h2, .about p, .about p:first-of-type {
    color: #8B4513;
    text-shadow: 0 2px 8px rgba(75,46,34,0.12);
}

.dark-text {
    color: #2c1810;
    /* or use var(--mahogany-dark) or var(--pure-black) for consistency */
}

/* Reserve button container */
.reserve-button-container {
    display: none; /* Hide reserve button since it's available in hero */
}



.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    padding: 1.4rem 2.8rem;
    border-radius: 18px;
    min-width: 180px;
    min-height: 70px;
}

.btn-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: var(--mahogany-dark);
    font-family: inherit;
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    z-index: 2;
    opacity: 1 !important;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    line-height: 1.3;
}

.btn-label {
    text-align: left;
    left: 1.2rem;
    transform: translateY(-50%);
    width: auto;
    min-width: 0;
    max-width: 90%;
}

.btn-primary, .btn-secondary {
    color: transparent !important;
}

/* --- Portrait A4 paper look for menu placeholder --- */
.menu-placeholder {
  aspect-ratio: 210/297;
  width: min(90vw, 420px);
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .menu-content, .menu-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .menu-placeholder {
    /* Only keep centering and margin, rest handled above */
    margin: 2rem auto;
  }
}


