/* Custom CSS om de afbeelding en circle-button in index.html exact hetzelfde te maken als in eindpagina.html */

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

.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: 0px;
    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);
}

/* 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: 1rem;
}

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

/* Responsive styles */
@media (max-width: 900px) {
    /* Navbar spacing */
    #navbar {
        margin-bottom: 3rem;
    }

    .hero-image {
        width: 100%;
        margin: 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: -80px;
        right: 50%;
        transform: translateX(50%) rotate(0deg);
        margin: 0;
        width: 140px;
        height: 140px;
    }

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

    /* Content spacing */
    .content-container {
        margin-bottom: 100px;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    /* Main content spacing */
    main {
        margin-top: 2rem;
    }
}

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

    .content-container {
        margin-bottom: 120px;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

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

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

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

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

    .circle-button-inner .small-text {
        font-size: 0.6em;
        padding: 0 5px;
    }
} 