/* Hero mobile presence — fix "te kort" critique
   Robin's feedback: op mobiel comprimeert de hero te veel, voelt te kort,
   en springt direct naar Over Mij. Geef hem volledige 100svh impact met
   imposante typografie en ademruimte. */

@media (max-width: 768px) {
    .hero,
    section.hero,
    #hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-top: clamp(5rem, 12vh, 8rem);
        padding-bottom: clamp(4rem, 10vh, 6rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .hero h1,
    section.hero h1,
    #hero h1 {
        font-size: clamp(3.5rem, 14vw, 5.5rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle,
    .hero p,
    section.hero .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.15rem);
        line-height: 1.55;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.25rem;
    }

    .hero-status-chip,
    .status-chip,
    .hero-eyebrow {
        margin-bottom: 2rem;
    }

    .hero-stats,
    .hero .stats,
    .hero-metrics {
        margin-top: clamp(3rem, 8vh, 4.5rem);
        padding-top: 2rem;
        gap: 0.5rem;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 36px;
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(46, 242, 160, 0.6) 40%,
            rgba(46, 242, 160, 0.9) 100%);
        animation: heroScrollHint 2.4s ease-in-out infinite;
        opacity: 0.7;
        pointer-events: none;
    }

    @keyframes heroScrollHint {
        0%, 100% { transform: translateX(-50%) scaleY(1) translateY(0); opacity: 0.4; }
        50% { transform: translateX(-50%) scaleY(1.2) translateY(4px); opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
        .hero::after { animation: none; opacity: 0.5; }
    }
}

@media (max-width: 480px) {
    .hero h1,
    section.hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-stats .stat-value,
    .hero-stats .metric-value {
        font-size: 1.5rem;
    }
}

/* Light-theme overrides verwijderd op Robin's verzoek - originele
   baby-blue palette + bestaande styles in style.css blijven leidend. */

/* ============================================================
   Hero stat labels - clean wit ipv grijs.
   Robin: 'dat grijs is niet mooi'.
   ============================================================ */
.hero-stat span,
.hero-stat-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-transform: none !important;
    letter-spacing: 0.005em !important;
    font-weight: 500 !important;
    margin-top: 0.5rem !important;
}

.hero-stat strong {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    color: #5BD9A1 !important;
}

/* Hero subtitle - lichter wit ipv grijs */
.hero-subtitle,
.hero p {
    color: rgba(255, 255, 255, 0.82) !important;
}

body.light-theme .hero-stat span,
body.light-theme .hero-stat-label {
    color: rgba(15, 23, 42, 0.78) !important;
}

body.light-theme .hero-subtitle,
body.light-theme .hero p {
    color: rgba(15, 23, 42, 0.78) !important;
}

/* Stat numbers blauw in light theme (groen accent botst met blauw thema) */
body.light-theme .hero-stat strong {
    color: #2563eb !important;
}

@media (max-width: 768px) {
    .hero-stat strong {
        font-size: 1.85rem !important;
    }
    .hero-stat span {
        font-size: 0.72rem !important;
    }
}
