/* css/style.css */

/* 1. Imports: Haal alle modulaire styles op */
@import url("css/hero.css");
@import url("css/waarom.css");
@import url("css/collectie.css");
@import url("css/ervaringen.css");
@import url("css/footer.css");
@import url("css/form.css");

/* 2. Globale Stijlen: Enkel wat voor de hele site geldt */
:root {
    --blue: #00a8ff;
    --navy: #1a2a3a;
    --bg: #f8fbff;
    --white: #ffffff;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: var(--nav-height);
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--navy);
    margin: 0;
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 32px;
}
.text-center {
    text-align: center;
}

/* 3. Navigatie: Deze laten we hier staan omdat hij op elke pagina (header) staat */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--navy);
    transition: 0.3s ease;
    > span {
        color: var(--blue);
    }
}

.nav-brand:hover {
    scale: 1.2;
    color: var(--blue);
    > span {
        color: var(--navy);
    }
}

/* Verberg checkbox voor mobiel menu */
#menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

/* Mobiele Hamburger Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px;
}

/* --- Hero Sectie --- */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top, #e6f7ff 0%, #ffffff 70%);
}

.badge {
    background: #e3f2fd;
    color: var(--blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: -3px;
    margin: 24px 0;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #00a8ff, #0077be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #64748b;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-main,
.btn-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-main {
    background: var(--navy);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 42, 58, 0.15);
}

.btn-main:hover {
    transform: translateY(-3px);
    background: var(--blue);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: var(--bg);
}

/* --- Responsive Navigatie Logica --- */
@media (max-width: 900px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: white;
        flex-direction: column;
        overflow: hidden;
        transition: 0.4s ease;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a {
        display: block;
        padding: 20px;
        width: 100%;
    }

    /* Activeer menu via checkbox */
    #menu-toggle:checked ~ .nav-links {
        height: calc(100vh - var(--nav-height));
        padding-top: 20px;
    }
}

/* css/sections/footer.css */
.footer {
    background: var(--navy);
    color: white;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

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

.footer-brand .nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand .nav-logo span {
    color: var(--blue);
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--blue);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    color: #64748b;
}

.footer-legal p {
    margin: 8px 0;
}

/* --- Mobile Responsive Overrides --- */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 8px;
    }

    .single-pricing-wrapper {
        padding: 0 12px;
        margin-top: 40px;
    }

    .price-box.featured {
        padding: 40px 24px;
        border-radius: 24px;
        max-width: 100%;
        width: 100%;
    }

    .amount {
        font-size: 3rem;
    }

    .features li {
        font-size: 0.95rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .testimonial p {
        font-size: 1.15rem;
    }

    .order-form-container {
        padding: 40px 12px;
        max-width: 100%;
    }

    .order-card {
        padding: 16px;
        border-radius: 12px;
    }

    .order-title {
        font-size: 2rem;
    }

    .btn-main,
    .btn-secondary,
    .btn-submit-order,
    .btn-main.highlight {
        width: 100%;
        padding: 14px 18px;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .badge.red-alert {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 2.4rem;
    }

    .price-box.featured {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .features li::before {
        margin-right: 8px;
    }

    .form-group input {
        padding: 12px;
    }
}

/* Success page specific styles */
.success-section {
    padding-top: 150px;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
}

.success-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.cert-box {
    border: 2px dashed var(--blue);
    padding: 30px;
    margin: 30px 0;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .success-section {
        padding-top: 60px;
    }

    .success-card {
        padding: 28px;
        border-radius: 18px;
    }

    .cert-box {
        padding: 18px;
        margin: 18px 0;
    }

    .success-container {
        padding: 0 16px;
    }

    .btn-main {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .success-section {
        padding-top: 40px;
    }

    .success-card {
        padding: 18px;
        border-radius: 14px;
    }

    .cert-box {
        padding: 12px;
        margin: 12px 0;
    }

    .gradient-text {
        font-size: 1.4rem;
    }
}
