/* ══════════════════════════════════════════
   RETREAT BROCHURE - LUXURY DESIGN
   ══════════════════════════════════════════ */

:root {
    --gold: #d4af37;
    --dark-green: #0a1f11;
    --mint-bg: #8bbcb5;
    --luxury-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* ═════ 1. HERO SECTION ═════ */
.dining-hero {
    height: 70vh;
    min-height: 500px;
    background: url('../img/cs.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dining-hero-box {
    position: relative;
    z-index: 1;
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 80px;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.dining-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin: 0;
}

/* ═════ 2. BROCHURE CONTENT ═════ */
.retreat-brochure {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.brochure-img-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--luxury-shadow);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.brochure-img-container:hover {
    transform: translateY(-5px);
}

.brochure-img-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ═════ ANIMATIONS ═════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.retreat-brochure img {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* ═════ RESPONSIVE ═════ */
@media (max-width: 768px) {
    .dining-hero {
        height: 50vh;
    }

    .dining-hero-title {
        font-size: 2.2rem;
    }

    .dining-hero-box {
        padding: 30px 20px;
        width: 90%;
    }

    .retreat-brochure {
        padding: 50px 0;
    }
}