/* ============================================================
   FaWoWa - hero.css
   Hero slideshow sectie
   ============================================================ */

.hero {
    height: 75vh;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-block {
    background: rgba(44,62,80,0.7);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 4rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-block h1 {
    color: white;
    font-size: 3.5rem !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    width: 100%;
}

.hero-content-block p {
    font-size: 1.3rem !important;
    opacity: 0.9;
    margin-bottom: 1.25rem !important;
    width: 100%;
}

.hero-btn {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary) !important;
    margin: 0 auto !important;
    padding: 0.8rem 2.5rem !important;
    min-height: 4rem !important;
    height: auto !important;
    font-size: 1.15rem !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    line-height: 1.2 !important;
    text-align: center !important;
}
.hero-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25) !important;
}

/* Desktop: compactere content block */
@media (min-width: 769px) {
    .hero-content-block {
        max-width: 480px;
        padding: 2.5rem 3rem !important;
    }
}

/* Mobiel */
@media (max-width: 768px) {
    .hero { height: 65vh; }
    .hero-content-block {
        max-width: 540px !important;
        padding: 2.5rem 1.5rem !important;
        margin: 0 1rem !important;
        width: calc(100% - 2rem) !important;
    }
    .hero-content-block h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
    .hero-content-block p { font-size: 1rem !important; margin-bottom: 1.5rem !important; }
    .hero-btn {
        padding: 0.8rem 2rem !important;
        min-height: 3.5rem !important;
        height: auto !important;
        font-size: 1rem !important;
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 30px !important;
    }
}
