/* Globale reset om responsive breedteberekeningen stabiel te maken */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfbf7;
    color: #47544b;
    overflow-x: hidden; 
}

h1, h2, h3, h4 {
    color: #1f2924;
}

/* --- intro --- */
.intro-section {
    max-width: 600px;
    margin: 140px auto 40px auto; 
    padding: 0 20px;
    text-align: left;
}

.brand-logo {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 0 25px 0;
}

.brand-logo path {
    fill: #1f2924 !important;
}

.logo h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.logo h2 {
    font-size: 20px;
    font-weight: 600;
    color: #3e5d49;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.intro-text p {
    text-align: left;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Over --- */
.about-section {
    max-width: 600px;
    margin: 20px auto 80px auto; 
    padding: 0 20px;
    text-align: left;
}

/* --- Prijsindicatie --- */
.price-indication-box {
    margin-top: 40px;
    background-color: #1f2924; 
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    width: calc(100% - 40px);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.price-indication-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    color: #ffffff;
}

.price-indication-box p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #f0f4f1;
    line-height: 1.5;
}

/* Accent button */
.btn-accent {
    background-color: #ff6b57 !important;
    color: #ffffff !important;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #e85a46 !important;
}

/* --- Slider & Stickers --- */
.slider-section {
    width: 100%;
    padding-bottom: 40px; 
    position: relative;
}

.sticker {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
    pointer-events: none;
}

.sticker-1 {
    width: 110px;
    height: 110px;
    background-color: #f2c94c;
    color: #1f2924;
    top: -20px;
    left: calc(50vw - 420px);
    transform: rotate(-12deg);
    animation: float1 5s ease-in-out infinite;
}

.sticker-2 {
    width: 90px;
    height: 90px;
    background-color: #ff6b57;
    color: #ffffff;
    bottom: 40px;
    right: calc(50vw - 400px);
    transform: rotate(15deg);
    animation: float2 6s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-10px) rotate(20deg); }
}

.slider-container {
    display: flex;
    gap: 20px; 
    padding: 20px 0; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 auto;
    width: 80vw; 
    max-width: 800px; 
    aspect-ratio: 3 / 2; 
    height: auto; 
    object-fit: cover; 
    border-radius: 24px;
    scroll-snap-align: center; 
    cursor: pointer; 
    transition: opacity 0.3s ease; 
}       

.slide:hover {
    opacity: 0.95;
}

.slide:first-child { margin-left: 10vw; }
.slide:last-child { margin-right: 10vw; }


.models-section {
    width: 100%;
    margin: 0 0 40px 0;
}

.models-header {
    padding: 0 10vw;
    margin-bottom: 30px;
    text-align: center;
}

.models-header h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.models-header p {
    font-size: 17px;
    color: #47544b;
    margin: 0;
}

.models-grid {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.models-grid::-webkit-scrollbar {
    display: none;
}

.model-card {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 320px; 
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center; 
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.model-card:first-child { margin-left: 10vw; }
.model-card:last-child { margin-right: 10vw; }

.model-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.model-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.model-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.model-price {
    font-size: 16px;
    color: #ff6b57;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.model-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.model-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f1;
    font-size: 15px;
}

.model-specs li:last-child {
    border-bottom: none;
}

.model-specs li strong {
    color: #1f2924;
    font-weight: 600;
}

.btn-outline {
    text-align: center;
    display: block;
    padding: 12px 20px;
    border: 2px solid #1f2924;
    color: #1f2924;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #1f2924;
    color: #ffffff;
}


/* --- FAQ --- */
.faq-section {
	width: calc(100% - 40px);
    max-width: 650px;
    margin: 0 auto 60px auto; 
    padding: 0px;
}

.faq-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.faq-category h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #3e5d49;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #1f2924;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f0f4f1;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    color: #85a992;
    transition: all 0.3s ease; 
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: #1f2924;
    color: #ffffff;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr; 
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr; 
}

.faq-answer {
    overflow: hidden; 
    color: #47544b;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0; 
    padding: 0 24px 24px 24px;
    font-size: 16px;
}

.faq-answer ul {
    margin: 0;
    padding: 0 24px 24px 44px;
    font-size: 16px;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* --- CTA Section --- */
.cta-section {
    margin: 40px auto 80px auto;
    background-color: #1f2924; 
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    width: calc(100% - 40px); 
    max-width: 650px;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    color: #ffffff;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #f0f4f1;
    line-height: 1.5;
}

/* --- Footer CTA --- */
.footer-cta-section {
    width: calc(100% - 40px); 
    max-width: 650px;
    margin: 80px auto 100px auto; 
    text-align: left;
}

.footer-cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-cta-section p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Container voor knoppen met flexibele wrapping */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start; 
    align-items: center;         
    margin-top: 20px;
}

/* Vormgeving button */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1f2924;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px; 
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #2e3d36; 
}

/* --- Lichte Configurator --- */
.configurator-section {
    width: calc(100% - 40px); 
    max-width: 650px;
    margin: 60px auto 80px auto;
}

.configurator-clean {
    background-color: #ffffff; 
    border-radius: 24px;
    padding: 40px;
    border: 0px solid #f0f4f1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}

.configurator-header {
    text-align: center;
    margin-bottom: 30px;
}

.configurator-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1f2924;
}

.configurator-header p {
    font-size: 15px;
    color: #47544b;
    margin: 0;
}

.configurator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.conf-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conf-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    color: #1f2924;
}

.conf-val {
    color: #ff6b57;
    font-weight: 700;
}

/* Custom lichte sliders */
.light-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    margin: 8px 0;
    cursor: pointer;
}

.light-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff6b57;
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
}

.light-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.light-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff6b57;
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
}

.light-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Footer area met gecentreerde CTA */
.configurator-footer {
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-top: 40px; 
}


/* --- MEDIA QUERIES --- */

/* Grote tabletten & desktops */
@media (min-width: 1000px) {
    .slide:first-child { margin-left: calc(50vw - 400px); }
    .slide:last-child { margin-right: calc(50vw - 400px); }
    
    /* Gecorrigeerd: de productkaarten behouden hun scrollende gedrag en lijnen links exact uit met de slider */
    .model-card:first-child { margin-left: calc(50vw - 400px); }
    .model-card:last-child { margin-right: calc(50vw - 400px); }
    
    .models-header {
        padding: 0;
        width: 100%;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 1000px) {
    .sticker-1 { left: 5%; top: 0px; width: 90px; height: 90px; font-size: 12px; }
    .sticker-2 { right: 5%; bottom: 30px; width: 80px; height: 80px; font-size: 11px; }
}

/* TYPO & RESPONSIVE PADDING (< 768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .logo h2 {
        font-size: 18px;
    }
    .intro-text p {
        font-size: 15px;
    }
    .price-indication-box h3 {
        font-size: 20px;
    }
    .price-indication-box p {
        font-size: 14px;
    }
    .models-header h3 {
        font-size: 24px;
    }
    .models-header p {
        font-size: 15px;
    }
    .model-title {
        font-size: 19px;
    }
    .model-price {
        font-size: 15px;
    }
    .model-specs li {
        font-size: 14px;
    }
    .btn-outline {
        font-size: 14px;
    }
    .faq-section h3 {
        font-size: 22px;
    }
    .faq-category h4 {
        font-size: 18px;
    }
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    .faq-icon {
        font-size: 18px;
    }
    .faq-answer p, .faq-answer ul {
        font-size: 14px;
    }
    .cta-section h2 {
        font-size: 24px;
    }
    .cta-section p {
        font-size: 15px;
    }
    .btn {
        font-size: 15px;
        padding: 14px 30px;
    }
}

@media (max-width: 600px) {
    .slide { width: 85vw; }
    .slide:first-child { margin-left: 7.5vw; } 
    .slide:last-child { margin-right: 7.5vw; }
    
    .model-card { width: 85vw; }
    .model-card:first-child { margin-left: 7.5vw; }
    .model-card:last-child { margin-right: 7.5vw; }
    
    .models-header { padding: 0 7.5vw; }
    
    .intro-section { margin: 60px auto 30px auto; }
    .about-section { margin: 20px auto 60px auto; }
    
    /* Gecorrigeerd: de marges worden nu via de dynamische 'width: calc(100% - 40px)' en 'margin: auto' perfect en automatisch symmetrisch berekend */
    .cta-section { 
        padding: 40px 20px; 
    }
    
    .sticker-1 { width: 75px; height: 75px; font-size: 10px; top: -10px; }
    .sticker-2 { width: 65px; height: 65px; font-size: 9px; right: 2%; bottom: 40px; }
    
    .price-indication-box { padding: 30px 20px; }
    
    .configurator-clean {
        padding: 30px 20px;
    }

    .configurator-footer .btn {
        width: 100%;
    }
}

/* Zeer kleine smartphones (zoals de iPhone SE) */
@media (max-width: 480px) {
    /* Stapel de CTA-knoppen voor bellen/mailen onder elkaar voor een betere duim-besturing */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}