/* =========================
   BASE / GLOBAL
========================= */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    font-family: "Playfair Display", serif;
}

/* Focus states */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Form placeholders */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}
:root {
    /* BACKGROUNDS */
    --bg-dark: #0b0b0c;
    --bg-warm: #120c08;
    /* TEXT COLORS */
    --text-primary: rgba(232, 226, 214, 0.90);
    --text-secondary: rgba(232, 226, 214, 0.72);
    --text-muted: rgba(232, 226, 214, 0.55);
    /* ACCENT COLORS */
    --accent: #c8a24a;
    --accent-soft: rgba(200, 162, 74, 0.65);
    --accent-dark: #7a5a28;
    /* EFFECTS */
    --shadow-soft: rgba(0, 0, 0, 0.45);
    --shadow-strong: rgba(0, 0, 0, 0.65);
    /* GLASS / OVERLAYS */
    --glass-dark: rgba(10, 10, 10, 0.35);
    --glass-warm: rgba(20, 14, 10, 0.55);
}
/* =========================
   SAUNA THEME
========================= */

body.sauna-theme {
    background: radial-gradient(circle at top, #2a1c12 0%, #0b0b0c 70%);
    color: #e8e2d6;
    position: relative;
    z-index: 1;
}

/* Links */
a {
    color: #c8a24a;
    transition: 0.3s;
}

    a:hover {
        color: #e0c46a;
    }

/* =========================
   NAVBAR
========================= */

.sauna-navbar {
    position: relative;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 162, 74, 0.25);
}

    .sauna-navbar .navbar-brand,
    .sauna-navbar .nav-link {
        color: #c8a24a !important;
    }

        .sauna-navbar .nav-link:hover {
            color: #e0c46a !important;
        }

    /* ensure clickable layering */
    .sauna-navbar .nav-link,
    .navbar-toggler {
        position: relative;
        z-index: 10000;
    }

/* =========================
   CARDS (glass style)
========================= */

.card {
    background: rgba(15, 10, 8, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(200,162,74,0.18);
    border-radius: 18px;
    color: #e8e2d6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-6px);
        border-color: rgba(200,162,74,0.4);
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

/* =========================
   BUTTONS
========================= */

.btn,
.btn-primary {
    background: linear-gradient(145deg, #c8a24a, #7a5a28);
    border: none;
    color: #0b0b0c;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/* Optional gold button variant */
.btn-gold {
    background: linear-gradient(145deg, #c8a24a, #6f5224);
    padding: 12px 30px;
    letter-spacing: 1px;
}

    .btn-gold:hover {
        box-shadow: 0 10px 25px rgba(200,162,74,0.25);
    }

/* =========================
   FORMS
========================= */

input,
textarea,
select {
    background: #120c08 !important;
    border: 1px solid rgba(200,162,74,0.25) !important;
    color: #e8e2d6 !important;
    border-radius: 10px !important;
}

    input:focus {
        border-color: #c8a24a !important;
        box-shadow: 0 0 10px rgba(200,162,74,0.25) !important;
    }

/* =========================
   HERO INDEX/HOME
========================= */

.hero {
    position: relative;
    height: 60vh;
    background: url('/images/sauna-wood-steam.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, rgba(255,180,80,0.08), transparent 60%);
        animation: flicker 6s infinite ease-in-out;
    }

@keyframes flicker {
    0%, 100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

    .hero-content h1 {
        font-size: 4.5rem;
        letter-spacing: 6px;
        color: #c8a24a;
    }
    .hero-subtitle,
    .hero-content h1,
    .hero-intro,
    .hero-text .exp-whisper,
    .hero-content .btn-gold,
    .hero-image {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeText 1.2s forwards;
    }

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-content h1 {
    animation-delay: 0.4s;
}

.hero-intro {
    animation-delay: 0.4s;
}

.hero-content .btn-gold {
    animation-delay: 0.4s;
}

.hero-image {
    animation-delay: 0.4s;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    color: #c8a24a;
    margin-bottom: 50px;
}

/* =========================
   STEAM EFFECT HOME
========================= */

.steam-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.steam {
    position: absolute;
    bottom: -60px;
    width: 60px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(18px);
    animation: rise 12s infinite ease-in;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    25% {
        opacity: 0.25;
    }

    100% {
        transform: translateY(-900px) scale(2.8);
        opacity: 0;
    }
}

/* steam positions */
.s1 {
    left: 20%;
}

.s2 {
    left: 50%;
    animation-duration: 14s;
}

.s3 {
    left: 75%;
    animation-duration: 11s;
}

/* =========================
   GATE / LOADING SCREEN
========================= */

#gate {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 1.4s ease;
}

    #gate.fade-out {
        opacity: 0;
        pointer-events: none;
    }

.gate-bg {
    position: absolute;
    inset: 0;
    background: url('/img/LogoMax21trans.png') center/480px no-repeat;
    animation: slowFloat 12s ease-in-out infinite;
}

@keyframes slowFloat {
    0%, 100% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(1.12) translateY(-6px);
    }
}

.gate-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #d6b46b;
    transform: translateY(22vh);
}

#gate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(214,180,107,0.05), rgba(0,0,0,0.4));
}

#gate {
    visibility: hidden;
}

    #gate.show {
        visibility: visible;
    }

/* =========================
   Nav /
========================= */

.sauna-navbar {
    position: relative;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(12px);
    border-bottom: none; /* remove old line */
}

    /* gradient gold/brown divider */
    .sauna-navbar::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient( 90deg, #6f4a1f, /* brown gold */
        #c8a24a, /* main gold */
        #e0c46a, /* light gold highlight */
        #c8a24a, #6f4a1f );
        opacity: 0.9;
    }

.sauna-navbar {
    background: rgba(10, 10, 10, 0.35) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(214, 180, 107, 0.12);
    padding: 10px 0;
    transition: all 0.4s ease;
}

.sauna-brand img {
    filter: brightness(0.9) contrast(1.1);
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sauna-brand:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.sauna-link {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    letter-spacing: 1px;
    margin-right: 18px;
    position: relative;
    transition: color 0.3s ease;
}

    .sauna-link:hover {
        color: #d6b46b !important;
    }

    .sauna-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 0%;
        height: 1px;
        background: #d6b46b;
        transition: width 0.3s ease;
        opacity: 0.8;
    }

    .sauna-link:hover::after {
        width: 100%;
    }

body {
    letter-spacing: 0.2px;
    font-weight: 400;
}

h1,
h2,
h3,
.hero h1,
.exp-title,
.section-title,
.experience-heading,
.exp-tile-content h4,
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

h1, h2, h3 {
    letter-spacing: 1px;
}

/* ============================= */
/*    WOOD DIVIDER               */
/* ============================= */

.wood-divider {
    height: 5px;
    width: 100%;
    position: relative;
    margin: 40px 0;
    /* subtle wood tone */
    background: linear-gradient( 180deg, rgba(60, 40, 25, 0.35), rgba(30, 20, 15, 0.45) );
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.6), inset 0 -1px 2px rgba(255,255,255,0.03);
}

    .wood-divider::after {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 50%;
        height: 2px;
        background: linear-gradient( 90deg, transparent, rgba(214, 180, 107, 0.2), rgba(214, 180, 107, 0.7), rgba(214, 180, 107, 0.2), transparent );
        transform: translateY(-50%);
        border-radius: 2px;
        /* engraved feel */
        box-shadow: 0 0 6px rgba(214, 180, 107, 0.15), inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.4);
    }

    .wood-divider::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 50%;
        height: 4px;
        background: rgba(0,0,0,0.25);
        filter: blur(1px);
        transform: translateY(-50%);
        opacity: 0.4;
    }

    .wood-divider::after {
        animation: goldGlow 6s ease-in-out infinite;
    }

@keyframes goldGlow {
    0%, 100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 2px rgba(214, 180, 107, 0.15));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 6px rgba(214, 180, 107, 0.25));
    }
}

.wood-divider::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 1px; /* dunner = luxer */
    transform: translateY(-50%);
    background: linear-gradient( 90deg, transparent, rgba(214, 180, 107, 0.25), rgba(214, 180, 107, 0.55), rgba(214, 180, 107, 0.25), transparent );
    border-radius: 500px;
    opacity: 0.7;
}

.wood-divider::after {
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), inset 0 -1px 1px rgba(0,0,0,0.35);
}

.wood-divider::after {
    opacity: 0.45;
    filter: blur(0.2px);
}

.wood-divider::after {
    mask-image: linear-gradient( 90deg, transparent, black 20%, black 80%, transparent );
}

.gold-line {
    width: 58px;
    height: 3px;
    margin: 10px auto 18px;
    background: linear-gradient( 90deg, transparent, rgba(214,180,107,0.35), rgba(214,180,107,0.95), rgba(214,180,107,0.35), transparent );
}




/* ============================= */
/* EXPERIENCE SECTION (HOME)     */
/* ============================= */

.experience-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND IMAGE (blurred layer) */
.experience-bg {
    position: absolute;
    inset: 0;
    background: url('/img/GardenSundown.png') center/cover no-repeat;
    filter: blur(2px) brightness(0.95);
    transform: scale(1.1);
    z-index: 0;
}

/* DARK OVERLAY voor leesbaarheid */
.experience-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* CONTAINER */
.experience-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* TITLE */
.experience-heading {
    color: #d6b46b;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 18px rgba(214,180,107,0.12);
}

/* TEXT */
.experience-text p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    margin-bottom: 16px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeText 1.2s forwards;
}

    /* ANIMATION DELAY FIX (zodat ze niet allemaal tegelijk zijn) */
    .experience-text p:nth-child(1) {
        animation-delay: 0.1s;
    }

    .experience-text p:nth-child(2) {
        animation-delay: 0.3s;
    }

    .experience-text p:nth-child(3) {
        animation-delay: 0.5s;
    }

    .experience-text p:nth-child(4) {
        animation-delay: 0.7s;
    }

.gold-line,
.experience-highlight strong,
.experience-highlight small {
    position: relative;
    z-index: 3;
}
/* ============================= */
/* EXPERIENCE SECTION UPGRADE    */
/* ============================= */

.experience-section {
    padding: 130px 20px 150px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background: url('/img/GardenSundown.png') center/cover no-repeat;
    filter: blur(4px) brightness(0.62) saturate(0.95);
    transform: scale(1.08);
    z-index: 0;
}


.experience-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.experience-heading {
    color: #d6b46b;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 45px;
    text-align: center;
    opacity: 0.9;
}

.experience-text p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.76);
    line-height: 2.05;
    font-size: 17px;
    text-align: center;
}

/* kleine premium blokjes onderaan */
.experience-highlights {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.experience-highlight {
    position: relative;
    overflow: hidden;
    padding: 28px 22px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(214,180,107,0.16);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .experience-highlight span {
        display: block;
        color: rgba(214,180,107,0.55);
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .experience-highlight strong {
        display: block;
        color: #d6b46b;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .experience-highlight small {
        display: block;
        color: rgba(255,255,255,0.62);
        line-height: 1.7;
        font-size: 13px;
    }

@media (max-width: 768px) {
    .experience-section {
        padding: 95px 18px 110px;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* FADE ANIMATION */
@keyframes fadeText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.experience-section {
    background: radial-gradient( circle at 50% 30%, rgba(200, 162, 74, 0.08), transparent 60% );
    padding-top: 140px;
    padding-bottom: 140px;
}
.experience-text p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.experience-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    z-index: 1;
}

.experience-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.8s ease;
    z-index: 0;
}

.experience-highlight:hover::after {
    transform: scale(1.08);
}

.experience-highlight span,
.experience-highlight strong,
.experience-highlight small {
    position: relative;
    z-index: 2;
}

.experience-highlight:nth-child(1)::after {
    background-image: url('/img/ScandiSauna2.png');
}
.experience-highlight:nth-child(2)::after {
    background-image: url('/img/BarViewOnGarden.png');
}
.experience-highlight:nth-child(3)::after {
    background-image: url('/img/GardenEscape.png');
}
.experience-highlight:nth-child(4)::after {
    background-image: url('/img/Bar.png');
}
/*footer*/

.sauna-footer {
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid rgba(214, 180, 107, 0.12);
    padding: 50px 20px; /* meer lucht */
    margin-top: 40px;
    margin-bottom: -60px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient( to top, rgba(10,10,10,0.95), rgba(10,10,10,0.75) );
}

.footer-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.footer-brand {
    color: #d6b46b;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
}

    .footer-nav a {
        color: rgba(214, 180, 107, 0.55);
        text-decoration: none;
        font-size: 13px;
        transition: 0.4s ease;
    }

        .footer-nav a:hover {
            color: #d6b46b;
        }

.sauna-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(214, 180, 107, 0.3), transparent );
}

.footer-logo img {
    height: 42px;
    opacity: 0.55;
    filter: brightness(0.9) contrast(1.1);
    margin-bottom: 8px;
}

.sauna-footer {
    position: relative;
}

    .sauna-footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/img/LogoMax21trans.png') center no-repeat;
        background-size: 180px;
        opacity: 0.04;
        pointer-events: none;
    }


.footer-social {
    margin-top: 8px;
}

    .footer-social img {
        width: 18px;
        height: 18px;
        opacity: 0.5;
        filter: brightness(0.9);
        transition: all 0.3s ease;
    }

        .footer-social img:hover {
            opacity: 1;
            filter: brightness(1.2);
            transform: translateY(-1px);
        }

/* =========================
   INFO PAGE HERO
========================= */

.info-hero {
    padding: 80px 0 40px;
    background: radial-gradient(circle at top, rgba(200,162,74,0.08), transparent);
}

.info-title {
    font-size: 3rem;
    color: #c8a24a;
    letter-spacing: 3px;
}

.info-subtitle {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* =========================
   INFO CARDS
========================= */

.info-card {
    background: rgba(15, 10, 8, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(200,162,74,0.18);
    border-radius: 16px;
}

    .info-card h3 {
        color: #c8a24a;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

/* =========================
   TABLE
========================= */

.info-table td {
    color: #e8e2d6;
    padding: 8px 0;
}

.info-note {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* =========================
   LIST
========================= */

.info-list {
    list-style: none;
    padding-left: 0;
}

    .info-list li {
        padding: 6px 0;
        opacity: 0.9;
    }

        .info-list li::before {
            content: "•";
            color: #c8a24a;
            margin-right: 8px;
        }

/* =========================
   PRICES
========================= */

.price-box p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.price-box span {
    color: #c8a24a;
    font-weight: 600;
}

.info-table {
    background-color: transparent !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.75);
}

    .info-table tbody tr {
        background: transparent;
        border-bottom: 1px solid rgba(214, 180, 107, 0.08);
        transition: 0.3s ease;
    }

        .info-table tbody tr:hover {
            background: transparent;
        }

    .info-table td {
        border: none !important;
        padding: 12px 14px;
    }

        .info-table td:first-child {
            color: rgba(214, 180, 107, 0.8);
            letter-spacing: 1px;
        }

        .info-table td:last-child {
            color: rgba(214, 180, 107, 0.8);
            text-align: right;
        }

    .info-table td,
    .info-table th {
        background: transparent !important;
    }

/*HERO*/

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 6%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-subtitle {
    color: rgba(214,180,107,0.75);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 20px 0;
    max-width: 500px;
}

.hero-intro {
    max-width: 520px;
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    opacity: 0.92;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    filter: brightness(0.82) contrast(1.05) saturate(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at center, rgba(214,180,107,0.06), rgba(0,0,0,0.55) );
    z-index: 1;
}



/*Homeshell*/
.luxury-shell {
    position: relative;
    background: rgba(20, 14, 10, 0.55);
    border: 1px solid rgba(214, 180, 107, 0.15);
    border-radius: 28px;
    margin: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 0 60px rgba(214,180,107,0.05);
}

.hero,
.experience-section,
.about-section {
    background: transparent !important;
}

.btn-gold {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 22px;
    display: inline-block;
    text-decoration: none;
}

/*responsiveHero*/

@media (max-width: 992px) {

    .hero-content {
        grid-template-columns: 1fr; /* stack instead of 2 columns */
        gap: 40px;
    }

    .hero {
        min-height: auto;
        padding: 80px 6%;
    }

    .hero-image img {
        height: 420px;
        width: 100%;
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 992px) {

    .hero h1 {
        font-size: 42px;
        max-width: 100%;
    }

    .hero-intro {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .hero-image img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 992px) {

    .luxury-shell {
        margin: 16px;
        padding: 30px 20px; /* keeps frame breathing room */
    }
}

@media (max-width: 992px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {

    .hero-image {
        padding: 0 10px;
    }

        .hero-image img {
            width: 100%;
            height: 380px;
            border-radius: 20px;
        }
}

@media (max-width: 992px) {

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
        max-width: 100%;
    }
}

@media (max-width: 992px) {

    .hero-image img {
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }
}

@media (max-width: 992px) {

    .luxury-shell {
        padding: 50px 20px; /* more top/bottom air */
    }
}

@media (max-width: 992px) {

    .hero {
        padding: 90px 6% 70px; /* top more breathing room */
    }
}

@media (max-width: 992px) {

    .hero-content {
        gap: 30px; /* more separation between text & image */
    }

    .hero-image {
        margin-bottom: 30px; /* creates bottom air */
    }
}

@media (max-width: 992px) {

    .hero-content {
        padding-bottom: 150px;
        padding-top: 150px
    }
}


@media (max-width: 992px) {

    .luxury-shell {
        box-shadow: 0 25px 70px rgba(0,0,0,0.45), inset 0 0 80px rgba(214,180,107,0.05);
    }
}

/* =========================
   SAFE HERO RESPONSIVE FIX
========================= */

@media (max-width: 992px) {

    .hero {
        min-height: auto;
        padding: 80px 6% 60px;
    }

    /* ONLY change grid behavior, keep grid */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        width: 80%;
    }

        .hero-image img {
            width: 80%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 18px;
            display: block;
            margin: 0 auto; /* ✅ THIS centers the container */
        }

    .hero h1 {
        font-size: 38px;
        max-width: 100%;
    }

    .hero-intro {
        font-size: 15px;
        max-width: 100%;
    }
}






body.sauna-theme {
    background: radial-gradient(circle at top, #2a1c12 0%, #0b0b0c 60%), radial-gradient(circle at bottom, rgba(42,28,18,0.35), transparent 60%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.experience-block {
    background: rgba(15, 10, 8, 0.35);
    border: 1px solid rgba(214,180,107,0.12);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

    .experience-block h3 {
        color: #d6b46b;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .experience-block p {
        color: rgba(255,255,255,0.7);
        font-size: 14px;
        line-height: 1.8;
    }




.experience-heading {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 4px;
    opacity: 0.6;
}



/*experience screen*/

.exp-tile {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 320px;
    cursor: pointer;
}

    .exp-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) contrast(1.05);
        transition: 0.6s ease;
    }
    .exp-tile:hover img {
        transform: scale(1.05);
    }
.exp-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #e8e2d6;
}
    .exp-tile-content h4 {
        color: #c8a24a;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 500;
    }
.exp-text {
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2;
    color: rgba(255,255,255,0.72);
}
.exp-img {
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
    filter: brightness(0.85);
}

.exp-hero {
    position: relative;
    padding: 120px 20px 70px;
    text-align: center;
}

.exp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.exp-kicker,
.section-intro span {
    display: inline-block;
    color: rgba(214,180,107,0.72);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.exp-title {
    color: #d6b46b;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 14px;
}

.exp-subtitle {
    max-width: 560px;
    margin: 22px auto 0;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.9;
}

.exp-smalltitle {
    color: #d6b46b;
    font-size: 16px;
    line-height: 1.00;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    display: none;
}

@media (max-width: 768px) {
    .exp-title {
        font-size: 40px;
    }

    .exp-hero {
        padding: 90px 18px 50px;
    }
}

/* =========================
    PRIVATE CABINS/sling/ 18+ BLUR
========================= */


.sensitive-tile {
    position: relative;
}

    .sensitive-tile img {
        filter: blur(14px) brightness(0.45);
        transform: scale(1.04);
    }

    .sensitive-tile.revealed img {
        filter: brightness(0.75) contrast(1.05);
        transform: scale(1);
    }

.sensitive-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
}

.sensitive-tile.revealed .sensitive-cover {
    display: none;
}

.sensitive-box {
    text-align: center;
    padding: 22px 24px;
    max-width: 260px;
    border-radius: 18px;
    background: rgba(12, 8, 6, 0.72);
    border: 1px solid rgba(214,180,107,0.28);
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

    .sensitive-box span {
        display: block;
        color: #d6b46b;
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .sensitive-box p {
        color: rgba(255,255,255,0.76);
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .sensitive-box button {
        background: linear-gradient(145deg, #c8a24a, #7a5a28);
        border: none;
        color: #0b0b0c;
        border-radius: 10px;
        padding: 8px 22px;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
    }


/* =========================
    Experience gallery modal
     ========================= */

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .gallery-modal.show {
        display: flex;
    }

    .gallery-modal img {
        max-width: 90%;
        max-height: 85vh;
        border-radius: 16px;
        box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    }

.gallery-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: #d6b46b;
    cursor: pointer;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(214,180,107,0.15);
    border: 1px solid rgba(214,180,107,0.3);
    color: #d6b46b;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}
.luxury-shell {
    padding: 50px;
}
.luxury-shell {
    padding: 65px;
}
.row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* =========================
   HOME HERO RESPONSIVE FIX
========================= */

@media (max-width: 992px) {

    .luxury-shell {
        margin: 12px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding: 60px 18px 50px;
        overflow: visible;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 34px;
        padding: 0 !important;
        width: 100%;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        text-align: center;
    }

    .hero h1,
    .hero-content h1 {
        font-size: clamp(38px, 12vw, 56px);
        line-height: 1.05;
        max-width: 100%;
        margin: 18px auto;
        letter-spacing: 1px;
        word-break: normal;
    }

    .hero-intro {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.7;
        margin: 0 auto 26px;
    }

    .hero-image {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto;
    }

        .hero-image img {
            width: 100% !important;
            height: auto !important;
            max-height: none !important;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }
}

@media (max-width: 576px) {

    .hero {
        padding: 45px 10px 40px;
    }

        .hero h1,
        .hero-content h1 {
            font-size: clamp(34px, 13vw, 46px);
        }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-image img {
        aspect-ratio: 1 / 1;
    }
}


/* =========================
   SUBTLE PREMIUM ANIMATIONS
========================= */

/* Hero image gentle breathing */
.hero-image img {
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Experience tiles smoother lift */
.exp-tile {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

    .exp-tile:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(214,180,107,0.18);
    }

/* Gold line soft shimmer */
.gold-line {
    position: relative;
    overflow: hidden;
}

    .gold-line::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,0.65), transparent );
        animation: goldShimmer 5s ease-in-out infinite;
    }

@keyframes goldShimmer {
    0%, 70% {
        left: -80%;
    }

    100% {
        left: 120%;
    }
}

/* Modal smoother opening */
.gallery-modal {
    opacity: 0;
    transition: opacity 0.35s ease;
}

    .gallery-modal.show {
        opacity: 1;
    }

    .gallery-modal img {
        transform: scale(0.96);
        transition: transform 0.35s ease;
    }

    .gallery-modal.show img {
        transform: scale(1);
    }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-image img,
    .gold-line::after {
        animation: none;
    }

    .exp-tile,
    .gallery-modal,
    .gallery-modal img {
        transition: none;
    }
}

.exp-whisper {
    margin: 34px auto 0;
    max-width: 680px;
    text-align: center;
}

    .exp-whisper span {
        display: block;
        color: rgba(214,180,107,0.82);
        font-size: clamp(26px, 4vw, 42px);
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .exp-whisper p {
        margin: 14px auto 0;
        color: rgba(232,226,214,0.68);
        font-size: clamp(18px, 2vw, 24px);
        line-height: 1.6;
        font-style: italic;
        letter-spacing: 0.4px;
    }

    .exp-whisper::before,
    .exp-whisper::after {
        content: "";
        display: block;
        width: 90px;
        height: 1px;
        margin: 0 auto 22px;
        background: linear-gradient( 90deg, transparent, rgba(214,180,107,0.55), transparent );
    }

    .exp-whisper::after {
        margin: 22px auto 0;
    }


/* Hero elements hidden initially */
.exp-kicker,
.exp-title,
.exp-whisper {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeText 1.2s forwards;
}

/* Staggered timing */
.exp-kicker {
    animation-delay: 0.2s;
}

.exp-title {
    animation-delay: 0.4s;
}

.exp-whisper {
    animation-delay: 0.7s;
}

.exp-tile,
.private-divider {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .exp-tile.reveal,
    .private-divider.reveal {
        opacity: 1;
        transform: translateY(0);
    }

.experience-gallery-section {
    padding-top: 25px;
}

/* =========================
   INFO PAGE LUXURY LAYOUT
========================= */

.info-page-section {
    padding-top: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.info-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: rgba(20, 14, 10, 0.42);
    border: 1px solid rgba(214, 180, 107, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 45px rgba(214,180,107,0.035);
    overflow: hidden;
}

    .info-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(214,180,107,0.07), transparent 45% );
        pointer-events: none;
    }

    .info-card h3 {
        position: relative;
        color: #d6b46b;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .info-card p,
    .info-card li,
    .info-table td {
        position: relative;
        color: rgba(232,226,214,0.72);
        font-size: 18px;
        line-height: 1.7;
    }

    .info-card strong {
        color: rgba(214,180,107,0.9);
        font-weight: 500;
    }

.info-card-wide {
    grid-column: span 2;
}

.info-note {
    margin-top: 18px;
    color: rgba(232,226,214,0.55) !important;
    font-style: italic;
}

.info-table {
    margin-bottom: 0;
}

    .info-table tr {
        border-bottom: 1px solid rgba(214,180,107,0.08);
    }

        .info-table tr:last-child {
            border-bottom: none;
        }

    .info-table td {
        padding: 10px 0;
    }

        .info-table td:last-child {
            text-align: right;
            color: rgba(214,180,107,0.82);
        }

.info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .info-list li {
        padding: 8px 0;
    }

        .info-list li::before {
            content: "•";
            color: #d6b46b;
            margin-right: 10px;
        }

.price-box p {
    margin: 8px 0;
    font-size: 20px;
}

.price-box span {
    color: #d6b46b;
}

.info-about-section {
    padding-top: 35px;
}

.info-about {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

    .info-about h2 {
        color: #d6b46b;
        font-size: clamp(36px, 5vw, 60px);
        line-height: 1.1;
        font-weight: 400;
        margin: 18px auto;
    }

    .info-about p {
        max-width: 620px;
        margin: 0 auto;
        color: rgba(232,226,214,0.7);
        font-size: 20px;
        line-height: 1.8;
    }

/* Fade-in info blocks */
.info-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

    .info-reveal.reveal {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card-wide {
        grid-column: span 1;
    }

    .info-card {
        padding: 28px 24px;
    }

        .info-card h3 {
            font-size: 25px;
        }

        .info-card p,
        .info-card li,
        .info-table td {
            font-size: 17px;
        }
}

/* =========================
   EVENTS PAGE
========================= */

.events-intro-section {
    padding-top: 25px;
    padding-bottom: 35px;
}

.events-atmosphere {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .events-atmosphere h3 {
        color: #d6b46b;
        font-size: clamp(34px, 5vw, 58px);
        line-height: 1.1;
        font-weight: 400;
        margin: 20px auto;
    }

    .events-atmosphere p {
        max-width: 680px;
        margin: 0 auto;
        color: rgba(232,226,214,0.72);
        font-size: 20px;
        line-height: 1.8;
    }

.events-section {
    padding-top: 30px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(20, 14, 10, 0.42);
    border: 1px solid rgba(214,180,107,0.13);
    box-shadow: 0 25px 70px rgba(0,0,0,0.38), inset 0 0 45px rgba(214,180,107,0.035);
}

.event-image {
    height: 320px;
    overflow: hidden;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.78) contrast(1.05);
        transition: 0.7s ease;
    }

.event-card:hover .event-image img {
    transform: scale(1.06);
}

.event-content {
    padding: 32px;
}

.event-date {
    display: block;
    color: rgba(214,180,107,0.75);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.event-content h3 {
    color: #d6b46b;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.event-content p {
    color: rgba(232,226,214,0.72);
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 260px;
    }

    .event-content {
        padding: 26px;
    }
}

.info-page-section {
    padding-top: 25px;
}

    .info-page-section .private-divider {
        margin-bottom: 35px;
    }
/* =========================
   BACKOFFICE EVENTS
========================= */

.backoffice-section {
    padding-top: 25px;
}

.backoffice-toolbar {
    max-width: 1100px;
    margin: 0 auto 35px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 22px;
    background: rgba(20, 14, 10, 0.45);
    border: 1px solid rgba(214,180,107,0.14);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

    .backoffice-toolbar span {
        color: #d6b46b;
        font-size: 28px;
        font-weight: 500;
    }

.backoffice-events {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.backoffice-event-card {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 22px;
    border-radius: 26px;
    background: rgba(20, 14, 10, 0.42);
    border: 1px solid rgba(214,180,107,0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 45px rgba(214,180,107,0.035);
}

.backoffice-event-image {
    height: 150px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0,0,0,0.35);
}

    .backoffice-event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.8) contrast(1.05);
    }

.no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(214,180,107,0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

.backoffice-event-content h3 {
    color: #d6b46b;
    font-size: 30px;
    margin: 8px 0 10px;
}

.backoffice-event-content p {
    color: rgba(232,226,214,0.7);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.backoffice-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.backoffice-btn {
    min-width: 95px;
    padding: 9px 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(214,180,107,0.22);
    background: rgba(0,0,0,0.25);
    color: rgba(232,226,214,0.78);
    transition: 0.3s ease;
}

    .backoffice-btn:hover {
        transform: translateY(-2px);
        color: #d6b46b;
        border-color: rgba(214,180,107,0.45);
    }

    .backoffice-btn.delete {
        color: rgba(255,160,150,0.8);
        border-color: rgba(255,120,100,0.22);
    }

        .backoffice-btn.delete:hover {
            color: #ff9b8f;
            border-color: rgba(255,120,100,0.45);
        }

@media (max-width: 900px) {
    .backoffice-event-card {
        grid-template-columns: 1fr;
    }

    .backoffice-event-image {
        height: 230px;
    }

    .backoffice-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .backoffice-toolbar {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================
   EVENT CREATE FORM
========================= */

.event-form-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 28px;
    background: rgba(20,14,10,0.42);
    border: 1px solid rgba(214,180,107,0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 45px rgba(214,180,107,0.03);
}

.event-form-group {
    margin-bottom: 28px;
}

    .event-form-group label {
        display: block;
        margin-bottom: 10px;
        color: #d6b46b;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 12px;
    }

.event-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(214,180,107,0.15);
    color: rgba(232,226,214,0.9);
    transition: 0.3s ease;
}

    .event-input:focus {
        outline: none;
        border-color: rgba(214,180,107,0.45);
        box-shadow: 0 0 0 3px rgba(214,180,107,0.08);
    }

    .event-input::placeholder {
        color: rgba(232,226,214,0.4);
    }

textarea.event-input {
    resize: vertical;
}

.file-input {
    cursor: pointer;
}

.event-form-actions {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
}

@media (max-width: 768px) {

    .event-form-card {
        padding: 28px;
    }

    .event-form-actions {
        flex-direction: column;
    }

        .event-form-actions .btn,
        .event-form-actions a {
            width: 100%;
            text-align: center;
        }
}

.event-current-image {
    margin: 10px 0 30px;
}

    .event-current-image span {
        display: block;
        margin-bottom: 12px;
        color: rgba(214,180,107,0.75);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 12px;
    }

    .event-current-image img {
        width: 100%;
        max-height: 360px;
        object-fit: cover;
        border-radius: 22px;
        filter: brightness(0.82) contrast(1.05);
        box-shadow: 0 20px 55px rgba(0,0,0,0.4);
    }

.event-detail-card {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(20,14,10,0.42);
    border: 1px solid rgba(214,180,107,0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 45px rgba(214,180,107,0.03);
}

.event-detail-image {
    height: 430px;
    overflow: hidden;
}

    .event-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.78) contrast(1.05);
    }

.event-detail-content {
    padding: 38px;
}

    .event-detail-content h3 {
        color: #d6b46b;
        font-size: 42px;
        font-weight: 500;
        margin: 12px 0 18px;
    }

    .event-detail-content p {
        color: rgba(232,226,214,0.72);
        font-size: 20px;
        line-height: 1.8;
    }

@media (max-width: 768px) {
    .event-detail-image {
        height: 280px;
    }

    .event-detail-content {
        padding: 28px;
    }

        .event-detail-content h3 {
            font-size: 32px;
        }
}

.delete-modal {
    background: rgba(20,14,10,0.96);
    border: 1px solid rgba(214,180,107,0.18);
    border-radius: 22px;
    color: rgba(232,226,214,0.82);
    box-shadow: 0 30px 80px rgba(0,0,0,0.65);
}

    .delete-modal .modal-header,
    .delete-modal .modal-footer {
        border-color: rgba(214,180,107,0.12);
    }

    .delete-modal .modal-title {
        color: #d6b46b;
    }

    .delete-modal .btn-close {
        filter: invert(1);
    }


/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    padding-top: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.contact-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: rgba(20,14,10,0.42);
    border: 1px solid rgba(214,180,107,0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 45px rgba(214,180,107,0.035);
}

.contact-card-wide {
    grid-column: span 2;
}

.contact-card h3 {
    color: #d6b46b;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-card p,
.contact-card a {
    color: rgba(232,226,214,0.72);
    font-size: 19px;
    line-height: 1.8;
    text-decoration: none;
}

    .contact-card a:hover {
        color: #d6b46b;
    }

.contact-form-section {
    padding-top: 35px;
}

.contact-map-section {
    padding-top: 20px;
}

.contact-map {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(214,180,107,0.14);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 0 45px rgba(214,180,107,0.03);
}

    .contact-map iframe {
        width: 100%;
        height: 430px;
        display: block;
        border: 0;
        filter: brightness(0.82) contrast(1.05) saturate(0.85);
    }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-wide {
        grid-column: span 1;
    }

    .contact-card {
        padding: 28px 24px;
    }

    .contact-map iframe {
        height: 330px;
    }
}

.contact-intro {
    position: relative;
    overflow: hidden;
    padding: 70px 50px;
    border-radius: 28px;
    background: rgba(20,14,10,0.42);
    border: 1px solid rgba(214,180,107,0.13);
    backdrop-filter: blur(12px);
}

.contact-intro-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/ExternalLounge.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(4px) brightness(0.45);
    transform: scale(1.08);
}

.contact-intro-text {
    position: relative;
    z-index: 2;
    text-align: center;
}


.contact-form-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

    .contact-form-heading h2 {
        color: #d6b46b;
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.1;
        font-weight: 400;
        margin: 18px 0;
    }

    .contact-form-heading p {
        color: rgba(232,226,214,0.72);
        font-size: 18px;
        line-height: 1.8;
    }

html {
    scroll-behavior: smooth;
}

.contact-cta {
    margin-top: 20px;
    display: inline-block;
}

.nav-font {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
}

.dropdown-menu {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.dropdown-item {
    background: transparent;
    text-align: center;
    padding: 0.75rem 1rem;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(212, 175, 55, 0.12);
    }

    .dropdown-item img {
        transition: transform 0.25s ease;
    }

    .dropdown-item:hover img {
        transform: scale(1.08);
    }


.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    color: #d6b46b;
    background: rgba(15,15,15,0.75);
    border: 1px solid rgba(214,180,107,0.35);
    cursor: pointer;
    transition: all .3s ease;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

    .gallery-prev:hover,
    .gallery-next:hover {
        background: rgba(214,180,107,0.15);
        border-color: rgba(214,180,107,0.7);
    }

.events-heading {
    text-align: center;
    margin-bottom: 3rem;
    color: #f6ead7;
}

.events-heading-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a66a;
}

.events-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.events-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(246, 234, 215, 0.72);
    font-size: 1.05rem;
}

.events-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(200, 166, 106, 0.25);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(246, 234, 215, 0.75);
}

.past-events-section {
    padding-top: 1rem;
}

.events-heading-muted {
    opacity: 0.82;
}

.event-card-past {
    opacity: 0.72;
    filter: saturate(0.8);
}

    .event-card-past:hover {
        opacity: 1;
        filter: saturate(1);
    }

.event-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.event-description {
    white-space: normal;
}

.privacy-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

.privacy-card {
    background: rgba(20, 14, 10, 0.78);
    border: 1px solid rgba(198, 163, 91, 0.25);
    border-radius: 22px;
    padding: 34px;
    margin-bottom: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
}

    .privacy-card h3 {
        color: #c6a35b;
        font-family: var(--font-title);
        margin-bottom: 16px;
        font-size: 1.45rem;
    }

    .privacy-card p {
        color: rgba(255, 245, 230, 0.86);
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .privacy-card ul {
        margin-top: 12px;
        padding-left: 22px;
    }

    .privacy-card li {
        color: rgba(255, 245, 230, 0.82);
        margin-bottom: 8px;
        line-height: 1.7;
    }

    .privacy-card:hover {
        border-color: rgba(198, 163, 91, 0.45);
    }
.terms-section {
    padding-top: 80px;
    padding-bottom: 110px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.terms-card {
    background: rgba(20, 14, 10, 0.78);
    border: 1px solid rgba(198, 163, 91, 0.24);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .terms-card:hover {
        border-color: rgba(198, 163, 91, 0.48);
        transform: translateY(-3px);
    }

    .terms-card h3 {
        color: #c6a35b;
        font-family: var(--font-title);
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .terms-card p {
        color: rgba(255, 245, 230, 0.84);
        line-height: 1.85;
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }

    .terms-card {
        padding: 28px;
    }
}



