/* WRAPPER EN ACHTERGROND */
.sc-hero-wrapper-e9a73dce {
    background-color: #FFFFFF;
    padding: 100px 20px;
    width: 100%;
}
.sc-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, "Inter", sans-serif;
}

/* TITEL TEKST - HIER AANPASSEN (kleur, font, etc) */
.sc-hero-title {
    font-family: Arial, "Inter", sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: #000000;
    text-align: center;
    line-height: 1.15;
    margin: 0 0 24px 0;
    padding: 0;
}

/* SUBTITEL TEKST - HIER AANPASSEN */
.sc-hero-subtitle {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #2D4F73;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* KNOPPEN WRAPPER */
.sc-hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* ALGEMENE KNOP STIJL */
.sc-hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
    box-sizing: border-box;
}

/* KNOP 1 ACHTERGRONDKLEUR - HIER AANPASSEN */
.sc-hero-btn-1 {
    background-color: #2D4F73;
    color: #FFFFFF !important;
    border: none;
}
.sc-hero-btn-1:hover {
    background-color: #3A6491;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
    color: #FFFFFF !important;
}

/* KNOP 2 RANDKLEUR - HIER AANPASSEN */
.sc-hero-btn-2 {
    background-color: transparent;
    color: #2D4F73 !important;
    border: 1px solid #2D4F73;
}
.sc-hero-btn-2:hover {
    background-color: rgba(45,79,115,0.06);
    color: #2D4F73 !important;
}

/* HORIZONTALE LIJN - HIER AANPASSEN */
.sc-hero-divider {
    height: 1px;
    width: 200px;
    background-color: #B0B0B0;
    margin: 0 auto 16px auto;
}

/* KLEINE TEKST - HIER AANPASSEN */
.sc-hero-small-text {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

/* YOUTUBE LIGHTBOX STIJLEN */
.sc-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.sc-lightbox-overlay.sc-active {
    opacity: 1;
    visibility: visible;
}
.sc-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}
.sc-lightbox-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    width: 100%;
}
.sc-lightbox-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sc-lightbox-close {
    position: absolute;
    top: -40px;
    right: 20px;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .sc-hero-wrapper-e9a73dce {
        padding: 60px 20px;
    }
    .sc-hero-title {
        font-size: 36px;
    }
    .sc-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .sc-hero-title {
        font-size: 28px;
    }
    .sc-hero-subtitle {
        font-size: 15px;
    }
    .sc-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .sc-hero-btn {
        width: 100%;
    }
}
