:root {
    --color-dark: #2F444A; 
    --color-light: #FEFBF7; 
    --color-yellow: #E9C27A; 
    --color-blue: #86B6CC; 
    --color-red: #DA8C77; 
    --color-light-blue: #D6E3EC; 
    --shadow: 4px 4px 0 rgba(47, 68, 74, 0.50);
}

body { 
    background-color: var(--color-light);
    overflow-x: hidden;
    font-family: Helvetica, sans-serif;
}

h2, .section-title, .cta-title {
    color: var(--color-dark);
    text-align: center;
    text-shadow: var(--shadow);
    font-family: "cc-highjinkies", sans-serif;
    font-style: normal;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
}

.body-text-standard, p {
    color: var(--color-dark);
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

/* HEADER */

header {
    background-color: var(--color-yellow);
    background-image: url('../images/sterachtergrond.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    min-height: 947px; 
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 150px;
}

.nav-list a {
    color: var(--color-light);
    font-family: "imaginaryfriend-bb", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2.4px;
}

.nav-cta {
    background: var(--color-red);
    border: 2px solid var(--color-light);
    padding: 10px 25px;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translate(2px, 2px); 
    box-shadow: 2px 2px 0 0 rgba(47, 68, 74, 0.50);
}

.logo-item img {
    width: 100px;
    height: auto;
}

/* HERO */

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    padding-top: 30px;
}

.hero-content h1 {
    color: var(--color-light);
    text-shadow: var(--shadow);
    font-family: "cc-highjinkies", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 800px;
    margin: 0 auto 40px auto; 
    color: #637275;
    font-family: "imaginaryfriend-bb", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
}


.btn-hero {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid var(--color-light);
    background: var(--color-blue);
    box-shadow: var(--shadow);
    color: var(--color-light);
    font-family: "imaginaryfriend-bb", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px; 
    text-transform: uppercase;
}

.btn-hero:hover {
    transform: translate(2px, 2px); 
    box-shadow: 2px 2px 0 0 rgba(47, 68, 74, 0.50);
}

.hero-mascot {
    position: absolute;
    bottom: -65px;
    left: 5%; 
    max-width: 650px;
    z-index: 15;
}


/* WAT */

.intro-section {
    padding: 120px 120px 0px 120px;
    background-color: var(--color-light);
    max-width: 1440px;
    margin: 0 auto;
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: -120px;
}

.intro-content p {
    flex: 1;
    max-width: 550px;
}

.intro-content img {
    width: 675px;
    height: auto;
    transform: rotate(100deg);
    object-fit: contain;
}

/* WAAROM SECTIE */

.why-section {
    background-image: url('../images/achtergrond-waarom.png');     
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100%;
    
    width: 100%;
    padding: 150px;
    margin: 0 auto;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; 
}

.why-section h2 {
    max-width: 1250px; 
}

.usp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    width: 100%; 
    max-width: 1200px;
    padding: 0 20px;
}

.usp-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    flex: 1; 
    max-width: 300px; 
}

.why-section h3 {
    color: var(--color-dark);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-style: normal;
    font-size: 29px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
}

.why-section .usp-list {
    position: relative;
    z-index: 5;
}

/* FUN SECTIE */

.fun-section {
    position: relative; 
    min-height: 600px; 
    padding: 100px 10%;
    
    display: flex;
    justify-content: flex-end;
    align-items: center;
    }

.fun-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fun-maze-image {
    position: absolute;
    top: -350px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 80vw;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
}

.fun-afgeleide-image {
    position: absolute;
    left: 5%;
    bottom: 100px;
    width: 625px;
    height: auto;
    z-index: 2; 
    transform: rotate(-5deg);
}

.fun-text {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    text-align: left; 
}

.fun-section h3 {
    color: var(--color-dark);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-size: 36px;
    letter-spacing: 1.4px;
    margin-bottom: 20px;
}

/* OVER ONS  */

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    background-color: var(--color-light);
}

.section-title-about {
    text-align: center;
}

.about-image-container {
    width: 102%;
    background-image: url('../images/fotoback.png'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    
    padding: 100px 10%; 
    min-height: 600px;         
}

.about-card {
    width: 100%;
    max-width: 50%;
    
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 50px;
    
    background: var(--color-yellow); 
    box-shadow: var(--shadow);
    text-align: left;
}

.about-card h3 {
    color: var(--color-dark);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-size: 36px;
    letter-spacing: 1.4px;
    line-height: 120%;
}


/* PRODUCTEN */

.product-discovery-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.product-discovery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 87px; 
    
    width: 100%;
    max-width: 1240px; 
    margin: 0 auto;
}

.product-discovery-wrapper h2 {
    padding: 0 20px;
}

.cards-container { 
    display: flex;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
    
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 15px;
    flex: 1 0 0;
    padding: 20px;
    height: auto;

    background: var(--color-light-blue);
    box-shadow: var(--shadow);
}

.product-card h3 {
    color: var(--color-dark);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: 0;
}

.product-card p {
    color: var(--color-dark);
    font-style: normal;
    font-size: 16px;
}

.product-card img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.product-card .btn-cta {
    width: auto;
    padding: 8px 30px;
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
    text-decoration: none;
}

/* CTA SECTIE */

.cta-section {    
    background-image: url('../images/achtergrond-cta.png'); 
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    color: var(--color-light);
    padding: 165px 20px;
    
    max-width: 964px;
    width: 100%;
}

.cta-form h2{
    color: var(--color-light); 
}

.cta-form p {
    color: #FEFBF7; 
    font-family: "ImaginaryFriend BB", sans-serif;
    font-style: normal;
    font-size: 30px;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: 1.4px;
    max-width: 800px;
    text-align: center;
}

.form-inputs {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.input-field {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid var(--color-light);
    background: rgba(254, 251, 247, 0.30);
    
    color: var(--color-light);
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    outline: none; 

}

.input-field::placeholder {
    color: var(--color-light); 
    opacity: 0.8; 
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    
    width: 27px;
    height: 27px;
    border: 2px solid var(--color-light);
    background: rgba(254, 251, 247, 0.30);
    box-shadow: 2px 2px 0 0 rgba(47, 68, 74, 0.50); 
}

.custom-checkbox:checked {
    background: var(--color-red);
}

.btn-cta {
    display: flex;
    width: 325px;
    padding: 10px 55px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    border: 2px solid var(--color-light);
    background: var(--color-red);
    box-shadow: var(--shadow);
    
    color: var(--color-light);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.btn-cta:hover {
    transform: translate(2px, 2px); 
    box-shadow: 2px 2px 0 0 rgba(47, 68, 74, 0.50);
}

/*footer*/

.main-footer {
    width: 100%;
    background: var(--color-dark);
    
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 60px;           
    
    padding: 155px 0 10px 0;
    position: relative; 
    z-index: 1;
    margin-top: -90px;
}

.footer-top {
    width: 100%;
    max-width: 1440px;
    padding: 0 200px;
    box-sizing: border-box;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disclaimer {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    box-sizing: border-box;
    
    text-align: center;
    color: var(--color-light);
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0;
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-light);
    font-family: "ImaginaryFriend BB", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.main-footer a {
    text-decoration: none;
    color: var(--color-light);
}

.footer-links-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 1; 
}

.footer-links-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 15px;
    flex: 1; 
}

.footer-logo {
    width: 160px;
    height: auto;
    margin: 0 20px;
}

/* RESPONSIVITEIT */

@media (max-width: 1240px) {
    .cards-container {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .footer-top {
        padding: 0 50px;
    }
}

@media (max-width: 1000px) {
    .cta-form {
        padding: 50px 5%;
    }
}

@media (max-width: 850px) {
    .form-inputs { 
        flex-direction: column;
    }
        
    .cta-form h2 {
        font-size: 60px;
    }
    
    .cta-form p { 
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        gap: 20px;
        justify-content: space-between;
        padding: 0 20px;
    }
    .hero-content h1 { 
        font-size: 60px;
    }
    .hero-content p { 
        font-size: 28px;
    }
    .hero-mascot {
        right: 0;
        max-height: 350px;
    }

    .intro-section {
        flex-direction: column; 
    }
    
    .intro-content img { 
        width: 100%;
        max-width: 300px;
        height: auto;
        transform: rotate(0deg); 
        order: -1; 
        margin-top: 0;
    }
    
    .intro-section h2 {
        font-size: 50px;
        line-height: 1.2;
    }

    .usp-list {
        flex-wrap: wrap; 
        gap: 40px;
        justify-content: center;
    }
    .usp-list li { 
        width: calc(50% - 20px); 
        max-width: none;
    }

    .fun-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .fun-images { 
        order: -1;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fun-afgeleide-image {
        width: 300px;
        height: auto;
        transform: rotate(0deg);
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
    }
    
    .fun-maze-image {
        max-width: 90%;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .section-title-about {
        font-size: 50px;
        line-height: 1.2;
    }
    .about-card {
        max-width: 90%; 
        padding: 30px 20px;
        gap: 20px;
    }

    .cards-container {
        flex-direction: column;
        gap: 30px;
    }
    .product-card {
        width: 100%; 
        max-width: 90%;
        height: auto; 
        padding: 20px;
    }

    .main-footer {
        height: auto; 
        gap: 40px;
        padding: 40px 0 10px 0;
        margin-top: 0;
    }
    .footer-top { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 5%;
    }
    .footer-links-left, .footer-links-right {
        align-items: center; 
        width: 100%;
        gap: 15px;
    }
    .footer-links-right {
        text-align: center;
        align-items: center;
    }
}