:root {
    --gold: #d7b56d;
    --navy: #060d17;
    --soft-gold: rgba(215, 181, 109, 0.6);
    --soft-white: rgba(255,255,255,0.9);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000;
    overflow-x: hidden;
}

/* HERO BLOK */
.hero-offline {
    position: relative;
    height: 100vh;
    min-height: 620px;
    background-image: url("../assets/images/zekeropweg-offline-desktop.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
}

/* Donkere premium overlay */
.hero-offline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center,
                rgba(255,255,255,0.06) 0%,
                rgba(0,0,0,0.7) 40%,
                rgba(0,0,0,0.95) 100%);
}

/* Gouden lichtstralen */
.hero-rays {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(215, 181, 109, 0.18) 0%,
            transparent 55%),
        radial-gradient(circle at 30% 0%,
            rgba(255,255,255,0.07) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 0%,
            rgba(215,181,109,0.12) 0%,
            transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
    animation: heroFade 0.75s ease-out 0.1s both;
}

/* Gouden lijnen */
.hero-content::before,
.hero-content::after {
    content: "";
    position: absolute;
    top: -18px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.85;
}

.hero-content::before {
    left: 11%;
}

.hero-content::after {
    right: 11%;
}

.hero-title {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1rem;
    color: rgba(230,230,230,0.9);
    margin-bottom: 2rem;
}

/* Countdown */
.countdown-wrap {
    display: inline-block;
    padding: 1.1rem 1.8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(215,181,109,0.5);
    background: radial-gradient(circle at top,
        rgba(215,181,109,0.22),
        rgba(6,13,23,0.96));
    box-shadow:
        0 0 22px rgba(215,181,109,0.4),
        0 18px 35px rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
    animation: countdownPulse 2.4s ease-in-out infinite;
}

.countdown-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.82);
}

.countdown-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.count-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.count-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* Particles */
.particle {
    position: absolute;
    top: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe9b5 0%, #d7b56d 55%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
    animation-name: fallParticle;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countdownPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
    }
}

@keyframes fallParticle {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        transform: translate3d(var(--driftX), 110vh, 0) scale(0.8);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 780px) {
    .hero-offline {
        background-image: url("../assets/images/zekeropweg-offline-mobile.webp");
        background-size: cover;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
}

