body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

/* Achtergrondfoto */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('achtergrond.jpg') center center / cover no-repeat;
    filter: brightness(0.45);
    z-index: -2;
}

/* Donkere overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 25px;
}

.container {
    width: 90%;
    max-width: 700px;
    text-align: center;
    padding: 40px 20px;
}

.welkom {
    font-size: 28px;
    margin-bottom: 10px;
}

h1 {
    font-size: 90px;
    font-weight: normal;
    margin: 0;
    line-height: 1;
}

.divider {
    font-size: 30px;
    color: #d8b25c;
    margin: 20px 0;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
}

.construction {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.instagram-box {
    background: rgba(255,255,255,0.88);
    border-radius: 25px;
    padding: 25px;
    color: #222;
    max-width: 650px;
    margin: 0 auto;
}

.instagram-box a {
    color: #9c6d17;
    text-decoration: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 56px;
    }

    .welkom {
        font-size: 22px;
    }

    .subtitle {
        font-size: 18px;
    }

    .construction {
        font-size: 16px;
    }
}