/* Basis Reset & Google Fonts integratie */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a; /* Diep donker */
    color: #e0e0e0;
    overflow-x: hidden;
}

.highlight {
    color: #e63946; /* Stoer rood accent */
}

/* --- Navigatie (Glassmorphism) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px); /* Glaseffect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.logo .dot {
    color: #e63946;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

/* --- Knoppen --- */
.btn-aanmelden {
    background-color: #e63946;
    color: #0a0a0a;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-aanmelden:hover {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary {
    background-color: #e63946;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* --- Mobiele Navigatie Toggle --- */
.menu-toggle {
    display: none; /* Standaard verborgen op desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001; /* Zorg dat het boven de nav links ligt */
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Animatie voor hamburger icoon */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobiele navigatie links wanneer actief */
.nav-links.active {
    transform: translateX(0);
}

/* Zorg dat de header flexibel blijft op mobiel */
header.mobile-open {
    flex-wrap: wrap;
    justify-content: center;
}


/* --- Hero Sectie --- */
.hero {
    background: linear-gradient(to right, rgba(10,10,10,1) 40%, rgba(20,20,20,0.8) 100%);
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 10%; /* Rechter padding verwijderd voor edge-to-edge afbeelding */
    overflow: hidden; /* Voorkomt dat de vergrote foto uit de sectie steekt */
}

.hero-content {
    max-width: 500px; /* Iets smaller gemaakt voor meer afbeeldingsruimte */
    flex-shrink: 0; /* Voorkomt dat de tekst krimpt als de afbeelding veel ruimte inneemt */
    margin-right: 30px; /* Ruimte tussen tekst en afbeelding */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1.6; /* De afbeelding krijgt nu aanzienlijk meer breedte */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    position: relative; /* Nodig voor correcte hoogte van de afbeelding */
    height: 100%; /* Zorgt dat de container de volledige hoogte van de hero sectie inneemt */
}

.hero-image img {
    width: 100%;
    height: 100%; /* Vult de hoogte van de container */
    object-fit: cover; /* Zorgt dat de afbeelding de ruimte vult zonder te vervormen, en snijdt eventueel bij */
    transition: opacity 1s ease-in-out; /* Vloeiende overgang voor de opacity */
    mask-image: linear-gradient(to right, transparent, black 20%); /* Zachte overgang aan de linkerkant */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

/* --- Waarom Musti (Features) --- */
.intro {
    padding: 100px 10%;
    background-color: #111;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.4s;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #e63946;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.05);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
}

/* --- Zwevende Pop-up (Rechts) --- */
.side-popup {
    position: fixed;
    right: -400px; /* Begint buiten beeld */
    bottom: 40px;
    width: 320px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-left: 4px solid #e63946;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    padding: 25px;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy animatie */
}

.side-popup.show {
    right: 30px; /* Schuift het scherm in */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

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

.popup-content h3 {
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-content p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-popup {
    display: block;
    text-align: center;
    background: #2a2a2a;
    color: #e63946;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e63946;
    font-weight: 600;
    transition: 0.3s;
}

.btn-popup:hover {
    background: #e63946;
    color: #0a0a0a;
}

/* --- Reviews --- */
.reviews {
    padding: 100px 10%;
    background-color: #0a0a0a;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    background: #141414;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: left;
    border: 1px solid #222;
}

.review-card h4 {
    color: #fff;
    font-size: 1.2rem;
}

.review-card .stars {
    color: #e63946;
    margin: 10px 0;
    font-size: 1.2rem;
}

.review-card p {
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
}

/* --- Tarieven Pagina Specifiek --- */
.pricing-section {
    padding: 60px 10%;
    background-color: #0a0a0a;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card.featured {
    border: 2px solid #e63946;
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: #888;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
    text-align: left; /* Lijstjes zijn links uitgelijnd makkelijker te lezen */
}

.package-features li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: '✓';
    color: #e63946;
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-card {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Tabellen */
.table-container {
    margin: 40px 0;
    text-align: left;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
}

td:nth-child(2), th:nth-child(2) {
    text-align: right;
    white-space: nowrap;
}

th {
    background-color: #1a1a1a;
    color: #e63946;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

tr:hover {
    background: #161616;
}

/* --- Contact Pagina Specifiek --- */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

/* Specifieke styling voor date picker icoon in dark mode */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.1);
}

/* --- Footer --- */
footer {
    background: #050505;
    padding: 40px 10%;
    text-align: center;
    border-top: 1px solid #111;
}

footer h2 {
    color: #333;
    font-size: 3rem;
    margin-bottom: 10px;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Media Queries voor Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* --- Algemeen --- */
    body {
        font-size: 14px;
    }

    .intro, .reviews, .pricing-section {
        padding: 60px 5%; /* Minder padding aan de zijkanten */
    }

    /* --- Header --- */
    header {
        padding: 15px 5%;
        flex-wrap: wrap; /* Zorgt dat items kunnen ombreken */
        justify-content: space-between; /* Logo links, knop/toggle rechts */
    }

    .logo {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none; /* Verberg navigatie links standaard */
        flex-direction: column;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        position: absolute;
        top: 100%; /* Onder de header */
        left: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateX(-100%); /* Schuif buiten beeld */
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex; /* Toon wanneer actief */
        transform: translateX(0); /* Schuif in beeld */
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }

    .btn-aanmelden {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: block; /* Toon hamburger icoon */
    }

    /* --- Hero Sectie --- */
    .hero {
        flex-direction: column; /* Stapel tekst en afbeelding */
        height: auto; /* Hoogte automatisch aanpassen */
        padding: 80px 5% 0 5%; /* Padding aan alle kanten */
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 40px; /* Ruimte tussen tekst en afbeelding */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column; /* Knoppen onder elkaar */
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%; /* Knoppen volledige breedte */
        margin-left: 0;
    }

    .hero-image {
        flex: none; /* Geen flex-groei meer */
        width: 100%;
        height: 250px; /* Vaste hoogte voor afbeelding op mobiel */
        justify-content: center;
        margin-top: 30px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mask-image: none; /* Verwijder mask-image op mobiel voor duidelijkheid */
        -webkit-mask-image: none;
    }

    /* --- Features & Reviews --- */
    .features, .reviews-grid {
        flex-direction: column; /* Stapel kaarten onder elkaar */
        gap: 20px;
    }

    .feature-card, .review-card {
        width: 100%; /* Volledige breedte */
        padding: 30px 20px;
    }

    /* --- Pricing Grid --- */
    .pricing-grid {
        grid-template-columns: 1fr; /* Stapel pakketten onder elkaar */
    }

    .price-card.featured {
        transform: scale(1); /* Geen schaal effect op mobiel */
    }

    /* --- Contact Form --- */
    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important; /* Naamvelden onder elkaar */
        gap: 0 !important;
    }

    /* --- Pop-up --- */
    .side-popup {
        width: 90%;
        right: 5%;
        left: 5%;
        bottom: 20px;
        transform: translateX(0) !important; /* Zorg dat hij in het midden staat */
    }

    .side-popup.show {
        right: 5%;
    }
}