/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* --- Basis & Reset --- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

/* --- De Splash Container --- */
.splash-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* --- De Inhoud (Tekst & Knop) --- */
.splash-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.splash-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* De correcte styling voor het logo */
.splash-logo {
    max-width: 550px; /* Pas dit getal aan */
    height: 180px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #3B82F6;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1D4ED8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Responsive aanpassing voor kleinere schermen --- */
@media (max-width: 768px) {
    .splash-content h1 {
        font-size: 2.5rem;
    }
    .splash-content p {
        font-size: 1.2rem;
    }
}

/* --- MODAL (POP-UP) STYLING --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    color: #333;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 25px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content form input,
.modal-content form textarea {
    font-family: 'Poppins', sans-serif;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.modal-content form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* --- Honeypot Styling --- */
.honeypot-field {
    position: absolute;
    left: -9999px;
}

/* --- Footer Styling --- */
footer {
    background: #111827; /* Donkere achtergrond */
    color: #E5E7EB; /* Lichte tekstkleur */
    padding-top: 40px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-around; /* Verdeelt de kolommen over de ruimte */
    flex-wrap: wrap; /* Zorgt dat kolommen onder elkaar springen op kleine schermen */
    gap: 20px; /* Ruimte tussen de kolommen */
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-column {
    flex: 1; /* Geeft elke kolom evenveel ruimte */
    min-width: 250px; /* Minimale breedte voor een kolom */
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.2); /* Iets donkerder voor de copyright-balk */
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}