body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #f8f6f2;
}

/* PARALLAX BACKGROUND */
.parallax-bg {
    position: fixed;
    inset: 0;
    background: url('./images/hero-dream.webp') center center / cover no-repeat;
    z-index: 0;
    transition: transform 0.2s ease-out;
}

/* FLOATING DUVET */
.floating-duvet {
    position: fixed;
    inset: 0;
    background: url('./images/duvet-layer.png') center center / contain no-repeat;
    z-index: 1;
    pointer-events: none;
    animation: floatDuvet 6s ease-in-out infinite;
}

/* MIST */
.mist {
    position: fixed;
    inset: 0;
    background: url('./images/mist.png') repeat-x;
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
}

.mist-1 {
    animation: mistMove 60s linear infinite;
}

.mist-2 {
    animation: mistMove 90s linear infinite reverse;
    opacity: 0.18;
}

@keyframes mistMove {
    from { background-position: 0 0; }
    to { background-position: 2000px 0; }
}

@keyframes floatDuvet {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* CONTENT */
.maintenance-content {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* CARD */
.maintenance-card {
    max-width: 640px;
    width: 100%;

    /* VEEL transparanter */
    background: rgba(255,255,255,0.18);

    /* Iets meer blur voor leesbaarheid */
    backdrop-filter: blur(32px) saturate(120%);
    -webkit-backdrop-filter: blur(32px) saturate(120%);

    border-radius: 28px;
    padding: 70px 60px;

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow:
        0 40px 100px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.6);

    text-align: center;
    position: relative;
    overflow: hidden;
}

/* TYPO */
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #4a4642;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.divider {
    width: 60px;
    height: 1px;
    background: rgba(74,70,66,0.3);
    margin: 30px auto;
}

/* FADE SEQUENCE */
[class*="fade-seq-"] {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.fade-seq-1 { animation-delay: 0.2s; }
.fade-seq-2 { animation-delay: 0.6s; }
.fade-seq-3 { animation-delay: 0.9s; }
.fade-seq-4 { animation-delay: 1.2s; }
.fade-seq-5 { animation-delay: 1.5s; }
.fade-seq-6 { animation-delay: 1.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */
.wpforms-form input,
.wpforms-form textarea {
    border: 1px solid rgba(74,70,66,0.3) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    background: rgba(255,255,255,0.85) !important;
    transition: all 0.25s ease;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(207,200,232,0.4);
}

.wpforms-submit {
    background: #4a4642 !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 14px 28px !important;
    transition: all 0.3s ease;
}

.wpforms-submit:hover {
    background: #5b5550 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.footer-note {
    margin-top: 40px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .headline { font-size: 34px; }
    .maintenance-card { padding: 40px 25px; }
}