/* Algemene stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

.site-header .logo img {
    width: 140px;   /* was 40px */
    margin-right: 12px;
}


.nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #e74c3c;
}

/* Hero sectie */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    background: #f8f9fa;
    flex-wrap: wrap;
}

.hero-text h1 {
    font-size: 2.5rem;
    max-width: 500px;
}

.hero-text span {
    color: #e74c3c;
    font-weight: bold;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 10%;
    background: #fff;
    text-align: center;
}

.feature {
    background: #fff5f0; /* zachte oranje/rode tint */
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1); /* roodachtige subtiele schaduw */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.2);
}

.feature h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #e74c3c; /* match met je i-Rocket rood */
}


.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Waarom sectie */
.why {
    padding: 60px 10%;
    background: #f8f9fa;
}

.why h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.why ul {
    margin-top: 20px;
    list-style: none;
}

.why ul li {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.why ul li::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}

/* Pakketten sectie */
.pricing {
    padding: 60px 10%;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.card ul li.not-included::before {
    content: "✖";
    color: red;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #e74c3c;
}

.card .price {
    font-size: 1.6rem;
    margin: 15px 0;
    font-weight: bold;
}

.card .price span {
    font-size: 0.9rem;
    color: #555;
}

.card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.card ul li {
    margin: 6px 0;
    padding-left: 20px;
    position: relative;
}

.card ul li::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #e74c3c;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #c0392b;
}

/* Contactformulier */
.contact {
    padding: 60px 10%;
    background: #f8f9fa;
    text-align: center;
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #222;
}

.contact p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

.contact form {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 4px rgba(231, 76, 60, 0.25);
    outline: none;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.contact button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #c0392b;
}

/* Bedankpagina */
.thankyou {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: #f8f9fa;
    text-align: center;
    padding: 40px 10%;
}

.thankyou-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.6s ease;
}

.checkmark {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2ecc71;
}

.thankyou-box h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.thankyou-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.5;
}

.thankyou-box .btn {
    background: #e74c3c;
    padding: 12px 28px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thankyou-box .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}
/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
/* Desktop menu */
.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 20px;
}

.nav a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #e74c3c;
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* onder de header */
        right: 10%;
        background: #fff;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav ul li {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav ul.show {
        display: flex;
    }
}


/* Mobiel fix voor WhatsApp knop */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px;       /* kleiner maken */
        height: 45px;
        bottom: 15px;      /* iets hoger van de rand */
        right: 15px;
    }

    .whatsapp-float .wa-icon {
        width: 22px;
        height: 22px;
    }

    /* Tooltip uitschakelen op mobiel (geen hover) */
    .wa-tooltip {
        display: none;
    }
}

/* WhatsApp icon */
.whatsapp-float .wa-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* icoon wit maken */
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: 70px; /* naast de knop */
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Animatie */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 10%;
    background: #f8f9fa;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}
.site-footer .subfooter {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #777;
}

.site-footer .subfooter a {
    color: #e74c3c;   /* dezelfde roodtint als je merk */
    text-decoration: none;
    font-weight: 500;
}

.site-footer .subfooter a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image img {
        margin-top: 20px;
    }
}
