/* ══════════════════════════════════════════
   AREA 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.area-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--mint-bg);
}

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

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

.area-hero-title {
    position: relative;
    z-index: 1;
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 60px;
    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. MAIN CONTENT SECTIONS ═════ */
.area-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.top-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Individual Card specific to Dinning/Shopping/Grocery */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: var(--luxury-shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--gold);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

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

.info-card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

.info-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    flex-grow: 1;
}

/* Logos Grid styling */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.logo-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.logo-item {
    background: #ffffff;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border: 2px solid #eef5f1;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3); /* Golden glow highlight */
    border-color: var(--gold);
    z-index: 2;
    position: relative;
}

.logo-item img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* ═════ 3. BOTTOM SECTIONS ═════ */
.bottom-sections-row {
    margin-top: 50px;
    padding-bottom: 100px;
}

.text-feature-card {
    border-radius: 12px;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--luxury-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--gold);
}

.text-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-dark {
    background: var(--dark-green);
    color: #ffffff;
}

.card-light {
    background: #ffffff;
    color: var(--text-dark);
}

.bottom-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.card-dark .bottom-title {
    color: var(--gold);
}

.card-light .bottom-title {
    color: var(--dark-green);
}

.bottom-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.card-dark .bottom-desc {
    color: rgba(255, 255, 255, 0.85);
}

.card-light .bottom-desc {
    color: var(--text-muted);
}

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

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

/* ═════ RESPONSIVE ═════ */
@media (max-width: 1200px) {
    .top-cards-row {
        flex-direction: column;
    }

    .area-section {
        margin-top: -30px;
    }

    .info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .text-feature-card {
        margin-bottom: 30px;
        padding: 40px 30px;
    }
}

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

    .area-hero-title {
        font-size: 2rem;
        padding: 20px 40px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}