@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Passion+One:wght@400;700&display=swap");

:root {
    --primary-color: #1cad75;
    --secondary-color: #252525;
    --accent-glow: rgba(28, 173, 117, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.onderhoud-body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f3f4f6;
    background: radial-gradient(circle at 20% 20%, #2f2f2f 0%, #1a1a1a 45%, #121212 100%);
    overflow-x: hidden;
}

.onderhoud-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    position: relative;
}

.onderhoud-page::before,
.onderhoud-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.onderhoud-page::before {
    width: 280px;
    height: 280px;
    top: 8%;
    left: -80px;
    background: var(--accent-glow);
    animation: onderhoud-float 8s ease-in-out infinite;
}

.onderhoud-page::after {
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: 10%;
    background: rgba(255, 199, 0, 0.12);
    animation: onderhoud-float 10s ease-in-out infinite reverse;
}

.onderhoud-card {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(37, 37, 37, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.onderhoud-logo {
    width: min(280px, 78vw);
    height: auto;
    margin: 0 auto 1.75rem;
    display: block;
}

.onderhoud-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d1fae5;
    background: rgba(28, 173, 117, 0.15);
    border: 1px solid rgba(28, 173, 117, 0.35);
}

.onderhoud-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: onderhoud-pulse 2s ease-out infinite;
}

.onderhoud-titel {
    margin: 0 0 1rem;
    font-family: "Passion One", "Inter", sans-serif;
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.onderhoud-titel span {
    color: var(--primary-color);
}

.onderhoud-tekst {
    margin: 0 auto 1.5rem;
    max-width: 34rem;
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    line-height: 1.7;
    color: #d1d5db;
}

.onderhoud-divider {
    width: 72px;
    height: 3px;
    margin: 0 auto 1.25rem;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.onderhoud-footer {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

@keyframes onderhoud-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 173, 117, 0.55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(28, 173, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 173, 117, 0);
    }
}

@keyframes onderhoud-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(18px);
    }
}

@media (max-width: 480px) {
    .onderhoud-card {
        padding: 1.75rem 1.25rem;
    }
}
