/* ══════════════════════════════════════════
   AMENITIES - LUXURY DESIGN
   ══════════════════════════════════════════ */

:root {
    --gold: #d4af37;
    --dark-green: #0a1f11;
    --mint-bg: #f3f9f6;
    --text-dark: #1a1a1a;
    --text-muted: #5a6b61;
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --luxury-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

body.amenities-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

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

.amenities-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 17, 0.2);
}

.amenities-hero-title {
    position: relative;
    z-index: 1;
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 80px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}

/* ═════ 2. INTRO SECTION ═════ */
.amenities-intro {
    padding: 100px 0;
    text-align: center;
    background: #ffffff;
}

.amenities-intro p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.amenity-nav-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.amenity-nav-links a {
    position: relative;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid rgb(0 0 0 / 80%);
    border-radius: 30px;
    transition: all 0.4s ease;
    background: white;
}

.amenity-nav-links a:hover {
    color: white;
    background: var(--dark-green);
    border-color: var(--dark-green);
    box-shadow: 0 10px 20px rgba(10, 31, 17, 0.15);
    transform: translateY(-2px);
}

/* ═════ 3. AMENITIES SECTIONS ═════ */
.amenities-section {
    padding: 100px 0;
}

.bg-mint {
    background-color: var(--mint-bg);
}

.bg-white {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 80px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-card {
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 3px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow);
    border-top-color: var(--gold);
}

.amenity-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-bg);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--dark-green);
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon svg {
    stroke: #ffffff;
}

.amenity-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.amenity-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═════ 4. FOOTER NOTE ═════ */
.amenities-footer-note {
    background-color: var(--dark-green);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.amenities-footer-note h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.amenities-footer-note p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 1px;
}

.amenities-footer-note strong {
    color: var(--gold);
}

/* ═════ 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);
}

/* ═════ RESPONSIVE ═════ */
@media (max-width: 992px) {
    .amenities-grid {
        column-gap: 30px;
    }
}

@media (max-width: 768px) {
    .amenities-hero {
        height: 50vh;
    }

    .amenities-hero-title {
        font-size: 2rem;
        padding: 30px 20px;
    }

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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .amenity-nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .amenity-card {
        padding: 40px 20px;
    }
}