/* ===============================
   RESET & BASE STYLES
=================================*/

html {
    box-sizing: border-box;
    font-size: 16px;
}
  
*, *:before, *:after {
    box-sizing: inherit;
}
  
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
  
ol, ul {
    list-style: none;
}
  
img {
    max-width: 100%;
    height: auto;
}
  
a {
    text-decoration: none;
    color: inherit;
}

/* ===============================
   MAIN CONTENT
=================================*/

.content-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 5rem;
}

.hero-content {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 0;
    text-align: justify;
    line-height: 1.6;
}

.hero-content h1 {
    font-family: "Montserrat Bold";
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 1.5rem;
    font-family: "Montserrat Regular";
    color: #333;
    font-size: 1rem;
}

.hero-image {
    width: 52%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 0 0 auto;
    object-fit: cover;
}

/* Circle button */
.circle-button {
    position: absolute;
    bottom: -40px;
    right: -50px;
    width: 160px;
    height: 160px;
    background-color: #654E6F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
    transform: rotate(20deg);
    border: 5px solid white;
    z-index: 10;
    box-shadow: none;
}

.circle-button:hover {
    transform: scale(1.05) rotate(10deg);
}

.circle-button-inner {
    color: white;
    padding: 0.5rem;
    max-width: 90%;
}

.circle-button-inner p {
    font-family: "Montserrat Bold";
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #008743;
    color: white;
    font-family: "Montserrat Medium";
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 2rem;
}

.cta-button:hover {
    background-color: #006c36;
}

/* Media queries voor responsiveness */
@media (max-width: 900px) {
    /* Navbar spacing */
    #navbar {
        margin-bottom: 3rem;
    }

    /* Main content aanpassingen */
    .content-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem;
        margin-bottom: 120px;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        text-align: left;
        margin-bottom: 2rem;
    }

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

    .hero-content p:last-of-type {
        margin-bottom: 2rem;
    }

    .cta-button {
        margin-top: 3rem;
    }

    .hero-image {
        width: 100%;
        margin: 2rem 0 10rem 0;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
    }

    .circle-button {
        position: absolute;
        bottom: -100px;
        right: 50%;
        transform: translateX(50%) rotate(0deg);
        margin: 0;
        width: 140px;
        height: 140px;
    }

    .circle-button:hover {
        transform: translateX(50%) scale(1.05);
    }
}

@media (max-width: 600px) {
    /* Extra spacing voor kleinere schermen */
    #navbar {
        margin-bottom: 2rem;
    }

    .content-container {
        margin-bottom: 140px;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        margin-bottom: 1.5rem;
    }

    .cta-button {
        margin-top: 2.5rem;
        width: 100%;
        text-align: center;
    }

    .hero-image {
        margin: 1.5rem 0 8rem 0;
    }

    .hero-image img {
        max-width: 100%;
    }

    .circle-button {
        width: 130px;
        height: 130px;
        bottom: -100px;
    }

    .circle-button-inner {
        padding: 0.3rem;
    }

    .circle-button-inner p {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ===============================
   TEXT 
  =================================*/

#textContainer {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

#eindTitel {
    font-family: "Montserrat Bold";
}

#eindParagraaf {
    font-family: "Montserrat Regular";
    text-align: justify;
    width: 70%;
    font-size: 15px;
}

/* ===============================
   BUTTON
  =================================*/

  #eindButton {
    font-family: "Montserrat Bold";
    color: white;
    background-color: #008743;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
  
/* ===============================
   IMAGE
  =================================*/

  #cardannerImg {
    width: 1800px;
    height: auto;
    border-radius: 10px;
}


