/* ===============================
   WILD LIFE 3D SECTION
================================ */

#wildlife-3d-section {
    position: relative;
    height: 170vh;
    background: #000;
    overflow: hidden;
    z-index: 2;
}

#wildlife-canvas {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: block;
}

/* Overlay text */
.wildlife-overlay {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    pointer-events: none;
}

.wildlife-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 8px;
}

.wildlife-overlay p {
    opacity: 0.85;
}

/* CTA reveal */
.wildlife-cta {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
    transition: all 1s ease;
    z-index: 6;
    text-align: center;
}

.wildlife-cta.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile safe */
@media (max-width: 768px) {
    #wildlife-3d-section {
        height: 140vh;
    }

    .wildlife-overlay h2 {
        font-size: 28px;
    }
}
