/**
 * mini_zoos_parks.css
 * Breathtaking premium glassmorphic stylesheet for the Mini Zoos & Parks of Meghalaya.
 * Fully scoped and responsive.
 */

:root {
    --mzp-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    --mzp-glow: 0 0 25px rgba(5, 150, 105, 0.12);
}

.mzp-page {
    background-color: var(--cream, #f9f6ef);
    color: var(--ink, #0f1c10);
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
}

/* Page Hero */
.page-hero {
    background: #0a2e1a;
    padding: 50px 0;
    text-align: center;
    color: #fff;
    position: relative;
}
.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    color: #fff;
}
.hero-underline {
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gold, #f1c40f);
    margin: 15px auto 0;
    border-radius: 2px;
}

.mzp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sections */
.mzp-section-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--forest, #0a2e1a);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.mzp-section-subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #4b5563;
    margin-bottom: 24px;
    max-width: 800px;
}

/* ── INTERACTIVE DECK SELECTOR ── */
.mzp-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}
@media (max-width: 850px) {
    .mzp-deck {
        grid-template-columns: 1fr;
    }
}
.mzp-deck-card {
    background: #fff;
    border: 1px solid var(--fog, #e8f0e9);
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    box-shadow: var(--mzp-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mzp-deck-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}
.mzp-deck-card.active {
    transform: translateY(-5px);
    border-color: var(--gold, #f1c40f);
    box-shadow: 0 20px 40px rgba(10, 46, 26, 0.08);
}
.mzp-deck-card.active::before {
    background: var(--gold, #f1c40f);
}
.mzp-deck-icon {
    font-size: 2.2rem;
    color: var(--emerald, #059669);
    margin-bottom: 15px;
}
.mzp-deck-card.active .mzp-deck-icon {
    color: var(--gold, #f1c40f);
    filter: drop-shadow(0 0 8px rgba(241, 196, 15, 0.3));
}
.mzp-deck-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--forest, #0a2e1a);
    margin-bottom: 8px;
}
.mzp-deck-desc {
    font-size: 0.88rem;
    color: #556b5c;
    line-height: 1.6;
}

/* ── PLAYGROUND PANEL ── */
.mzp-playground {
    background: #fff;
    border: 1px solid var(--fog, #e8f0e9);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--mzp-shadow);
    margin-bottom: 50px;
    min-height: 450px;
    display: none;
    transform: translateY(15px);
    opacity: 0;
    animation: slideInPlayground 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mzp-playground.active {
    display: block;
}
@keyframes slideInPlayground {
    to { transform: translateY(0); opacity: 1; }
}

.mzp-playground-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}
@media (max-width: 950px) {
    .mzp-playground-grid {
        grid-template-columns: 1fr;
    }
}

/* ── HISTORY PARCHMENT CHAIN ── */
.mzp-timeline-container {
    background: var(--cream, #f9f6ef);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(10, 46, 26, 0.05);
}
.mzp-timeline-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    padding: 10px 0;
}
.mzp-timeline-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fog, #e8f0e9);
    z-index: 1;
    transform: translateY(-50%);
}
.mzp-timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--fog, #e8f0e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--forest, #0a2e1a);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}
.mzp-timeline-node.active {
    background: var(--forest, #0a2e1a);
    border-color: var(--gold, #f1c40f);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.35);
}
.mzp-parchment-card {
    background: #fff;
    border: 1px solid rgba(10, 46, 26, 0.06);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mzp-parchment-year {
    font-family: monospace;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--emerald, #059669);
    margin-bottom: 8px;
}
.mzp-parchment-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
}

/* ── FAUNA EXHIBIT CABINET ── */
.mzp-fauna-box {
    background: #fff;
    border: 1px solid var(--fog, #e8f0e9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}
.mzp-fauna-filter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.mzp-filter-btn {
    background: var(--fog, #e8f0e9);
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--forest, #0a2e1a);
    cursor: pointer;
    transition: all 0.3s;
}
.mzp-filter-btn.active {
    background: var(--emerald, #059669);
    color: #fff;
}
.mzp-species-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
}
.mzp-species-badge {
    background: var(--cream, #f9f6ef);
    border: 1px solid rgba(10, 46, 26, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--forest, #0a2e1a);
    transition: all 0.3s;
    transform: scale(0.95);
    opacity: 0;
    animation: popBadge 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes popBadge {
    to { transform: scale(1); opacity: 1; }
}
.mzp-species-badge:hover {
    background: #fff;
    border-color: var(--gold, #f1c40f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* ── TURA MISSION & VISION HEX GRID ── */
.mzp-hex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
@media (max-width: 650px) {
    .mzp-hex-grid {
        grid-template-columns: 1fr;
    }
}
.mzp-hex-card {
    background: var(--cream, #f9f6ef);
    border: 1px solid rgba(10, 46, 26, 0.04);
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mzp-hex-card:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: var(--emerald, #059669);
    box-shadow: var(--mzp-shadow);
}
.mzp-hex-head {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest, #0a2e1a);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mzp-hex-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(5,150,105,0.1);
    color: var(--emerald, #059669);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 10px;
}
.mzp-hex-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #4b5563;
}
.mzp-hex-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

/* ── LUM NEHRU PARK ACREAGE RADAR CATCHMENT ── */
.mzp-catchment-card {
    background: #05160b;
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mzp-catchment-header {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.72rem;
    color: #588f6a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
}
.mzp-catchment-screen {
    position: relative;
    width: 100%;
    height: 180px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mzp-map-hotspot {
    position: absolute;
    background: rgba(5, 150, 105, 0.2);
    border: 2px solid var(--emerald, #059669);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 10px var(--emerald);
    transition: all 0.3s;
}
.mzp-map-hotspot:hover {
    transform: scale(1.2);
    background: var(--gold, #f1c40f);
    border-color: #fff;
    box-shadow: 0 0 15px var(--gold);
}
.mzp-map-hotspot[data-id="1"] { top: 30px; left: 60px; }
.mzp-map-hotspot[data-id="2"] { top: 120px; left: 180px; }
.mzp-map-hotspot[data-id="3"] { top: 60px; right: 80px; }

.mzp-catchment-status {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px 22px;
}
.mzp-catchment-status-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold, #f1c40f);
    margin-bottom: 4px;
}
.mzp-catchment-status-text {
    font-size: 0.85rem;
    color: #adcfb8;
    line-height: 1.6;
}

/* ── DIGITAL META GRID ── */
.mzp-meta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.mzp-meta-widget {
    background: var(--cream, #f9f6ef);
    border: 1px solid rgba(10, 46, 26, 0.05);
    border-radius: 14px;
    padding: 15px 20px;
    text-align: center;
}
.mzp-meta-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--forest, #0a2e1a);
}
.mzp-meta-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-top: 2px;
}
