/* Hero Sectie */
#home-hero {
    background-color: var(--color-body-bg); /* helder wit/lichtgrijs */
    color: var(--color-body-text);          /* donkergrijs voor leesbaarheid */
    padding: 6rem 0;
    text-align: left;
    font-family: var(--font-base);
}

/* Hero Titel */
#home-hero h1 p {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.5px !important;
    font-family: var(--font-sec) !important;
    color: var(--color-primary) !important;
}

/* Subtitel / Lead */
#home-hero .lead {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: var(--color-body-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-base);
}

/* Hero Afbeelding */
#home-hero img {
    max-width: 300px;
    border-radius: calc(var(--border-radius) * 1.5); /* subtiel afgerond */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* lichte schaduw */
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

/* Knoppen */
#home-hero .btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), #2563eb);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-family: var(--font-sec);
    box-shadow: 0 5px 15px rgba(59,130,246,0.3);
    transition: all 0.3s ease;
}

#home-hero .btn-primary:hover {
    background: #2563eb; /* darken niet direct in CSS */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablets (max 991px) */
@media (max-width: 991px) {
    #home-hero {
        padding: 4rem 1.5rem;
        text-align: center; /* centreren voor betere balans */
    }

    #home-hero h1 p {
        font-size: 2.75rem !important;
    }

    #home-hero .lead {
        font-size: 1.2rem;
        max-width: 90%;
    }

    #home-hero img {
        max-width: 250px;
    }
}

/* Mobiel (max 600px) */
@media (max-width: 600px) {
    #home-hero {
        padding: 3rem 1rem;
    }

    #home-hero h1 p {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    #home-hero .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    #home-hero img {
        max-width: 200px;
        margin-top: 1.5rem;
    }

    #home-hero .btn-primary {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }
}
