/* Globale Stijlen & Reset */
:root {
    --primary-color: #0047bb; /* Zwolle Blauw */
    --secondary-color: #38a71d; /* Groen voor Actie */
    --light-bg: #f7f9fc; /* Zeer lichte, moderne achtergrond */
    --dark-text: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.15); /* Subtiele, maar zichtbare schaduw */
}

body {
    margin: 0;
    /* BELANGRIJK: Padding om de vaste navigatie te compenseren. Wordt later in media queries ingesteld. */
    padding-top: 100px; /* Standaard padding, zie media queries voor precisie */
    font-family: 'Inter', sans-serif; /* Strak UI-font */
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.6;
}

ul {
    
}

li {
    font-size:1.2rem;
}

a {
    color:#0047bb;
    font-weight:bold
}

/* Navigatiebalk (STICKY!) */
.navbar {
    width: 100%;
    position: fixed; /* Zorgt voor sticky effect */
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: var(--shadow-subtle);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; /* Meer verticale padding */
}

/* LOGO GROOTTE AANPASSING - ZEER PROMINENT IN NAV */
.logo {
    height: 120px; /* Nieuwe basisgrootte */
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    text-decoration: none;
    color: #4a4a4a; /* Zichtbare tekstkleur */
    font-weight: 600;
    padding: 8px 10px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-item:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}


/* Algemene Sectie Styling */
section {
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
}

.text-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Typografie */
.title {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    color: var(--dark-text);
    font-size: 2.2em;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.intro-text, .section-lead {
    font-size: 1.4em;
    font-weight: 400;
    color: #305269;
    margin-bottom: 30px;
    font-style: italic;
}

p {
    font-size: 1.2em;
}

/* Knoppen */
.button {
    display: inline-block;
    padding: 14px 30px;
    margin-top: 20px;
    border-radius: 8px; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.primary-button {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 71, 187, 0.3); /* Aangepaste schaduw met nieuwe primary color */
}

.primary-button:hover {
    background-color: #ffffff;
    box-shadow: 0 7px 20px rgba(0, 71, 187, 0.4);
    color: #0047bb;
    border: 1px solid #0047bb;
}

.secondary-button {
    background-color: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(56, 167, 29, 0.3);
}

.secondary-button:hover {
    background-color: #2f8c14;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(56, 167, 29, 0.4);
}

/* Formulier Sectie */
.form-section {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

#bestelformulier {
    padding-top:40px;
}

.sticker-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    margin-top: 30px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    height: 0;
    width: 0;
    opacity: 0;
}

p.privacy-note {
    font-size:0.8rem;
}

.sticker-form input,
.sticker-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sticker-form input:focus,
.sticker-form select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(56, 167, 29, 0.1);
    outline: none;
}

/* Instagram Sectie */
.spot-section {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.instagram-item {
    aspect-ratio: 1 / 1;
    background-color: var(--light-bg);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s;
}

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

.instagram-item i {
    font-size: 3em;
    margin-bottom: 10px;
}

.insta-note {
    margin-top: 40px;
    padding: 15px;
    background-color: #fffaf0;
    border-left: 5px solid #ffcc00;
    border-radius: 5px;
    color: #6a6a6a;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    background-color: #0047bb;
    color: #ffffff;
    font-size: 0.7em;
}

/* NIEUWE STIJLEN VOOR HERO-SECTIE (TWEE KOLOMMEN) */

/* De nieuwe wrapper voor de twee kolommen */
.hero-content-wrapper {
    max-width: 1100px; /* Iets breder voor meer ruimte voor twee kolommen */
    margin: 0 auto;
    display: flex; 
    flex-direction: column; /* Standaard op elkaar (Mobiel-first) */
    gap: 40px; /* Ruimte tussen de kolommen */
    align-items: center;
}

/* Stijl voor de linker kolom (Logo/Afbeelding) */
.hero-image-container {
    width: 100%;
    text-align: center;
    order: 1; /* Komt als eerste op mobiel */
}

/* Stijl voor het logo in de Hero-sectie (indien verplaatst) */
.main-logo {
    max-width: 80%; /* Prominent op mobiel */
    height: auto;
}

/* Stijl voor de rechter kolom (Tekst) */
/* .text-container wordt ook gebruikt voor andere secties, maar de flexbox in de hero-content-wrapper regelt de breedte hier. */
.hero-section .text-container {
    order: 2; /* Komt als tweede op mobiel */
}


/* Media Query voor Desktop */
@media (min-width: 768px) {
    /* PAS DE BODY PADDING AAN OP BASIS VAN HET NIEUWE, GROTE LOGO IN DE NAV */
    body {
        /* (170px logo + 2x 15px padding) = 200px hoogte. Plus 10px marge */
        padding-top: 0px;
    }
    
    .header-container {
        padding: 15px 50px;
    }
    
    .logo {
        height: 170px; /* Nog groter op desktop */
    }

    .title {
        font-size: 4.5em;
    }

    h2 {
        font-size: 2.8em;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    /* TWEE KOLOMMEN OP DESKTOP */
    .hero-content-wrapper {
        flex-direction: row; /* Zet ze naast elkaar */
        justify-content: space-between;
        gap: 10%;
    }
    
    .hero-image-container {
        width: 35%; /* Links: 35% breedte */
        order: 1;
        align-self: center; /* Verticaal gecentreerd */
        text-align: left; /* Logo links uitlijnen binnen de kolom */
    }

    .main-logo {
        max-width: 100%; /* Vul de hele breedte van 35% op */
    }

    .hero-section .text-container {
        width: 65%; /* Rechts: 65% breedte */
        order: 2;
    }

    .form-row {
        flex-direction: row;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .hide-on-mobile {
        display: flex;
    }
}

/* Media Query voor Mobiel */
@media (max-width: 767px) {
    body {
        /* Compensatie voor mobiele view: 55px logo + 2x 10px padding */
        padding-top: 75px !important; 
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .logo {
        height: 55px; 
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .title {
        font-size: 3em;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .hide-on-mobile {
        display: none;
    }

    .main-logo {
        max-width: 100%;
    }

    section#top {
        margin-top:-140px;
    }
}

/* FORM */

iframe .FormBuilderViewport {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    }

    /* EXTRA */
    p.klein {font-size:1rem}