/* HERO SECTION */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    padding-left: 60px;
    background-image:
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
        url("../images/hero/hero-desktop.jpg");
    background-size: 95%;
    background-position: 55% 28%;
    background-color: #f4f3ef;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    max-width: 430px;
    margin-top: 90px;
    margin-left: 0;
}

.hero-content h1 {
    margin-bottom: 25px;
    font-size: 3.2rem;
    line-height: 1.1;
}

.hero-content p {
    margin-top: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 430px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    text-decoration: none;
    background: var(--accent);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;

}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    text-decoration: none;
    border: 2px solid var(--accent);
    color: var(--text-dark);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* MOBIEL HERO */
@media (max-width: 768px) {
    #hero {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        padding-bottom: 4vh;
        padding-top: 90px;
        padding-left: 20px;
        padding-right: 20px;
        background-image:
            linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
            url("../images/hero/hero-mobile.JPG");
        background-size: cover;
        background-position: center top;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        background: rgba(255,255,255,.45);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 24px;
        margin-top: 320px; /* verlaag tekst zodat gezicht zichtbaar is */
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        margin-top: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}