/* ============================================
   HERO SECTION STYLES - WEBCAREX
   ============================================ */

.hero-section {
    position: relative;
    height: calc(100vw * (800 / 1920));
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 0px;
    padding-top: var(--header-height);
    z-index: 999;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

/* Mobile: hero section moet achter header komen met boog */
@media screen and (max-width: 968px) {
    .hero-section {
        margin-top: calc(0px - var(--header-height));
        padding-top: var(--header-height);
        border-radius: 0 0 30px 30px;
        z-index: 999;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.05) 0%,
        rgba(10, 10, 10, 0.1) 30%,
        rgba(10, 10, 10, 0.15) 60%,
        rgba(10, 10, 10, 0.25) 100%
    );
    z-index: 1;
}

.hero-text-bottom-left {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.8px;
    line-height: 1.5;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.hero-text-bottom-left:hover {
    opacity: 1;
}

.hero-text-bottom-left p {
    margin: 0;
    color: var(--text-white);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start),
        var(--gradient-x-2-start)
    );
    color: var(--text-white);
    box-shadow: 0 6px 25px rgba(123, 44, 191, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 44, 191, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Hero Section */
@media screen and (max-width: 968px) {
    .hero-section {
        background-attachment: scroll;
        height: calc(100vw * (800 / 1920));
        min-height: 400px;
        max-height: 600px;
        background-size: cover;
        background-position: center 50%;
        background-color: var(--bg-dark);
        border-radius: 0 0 30px 30px;
        margin-top: calc(0px - var(--header-height));
        padding-top: var(--header-height);
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: calc(100vw * (800 / 1920));
        min-height: 400px;
        max-height: 500px;
        background-size: cover;
        background-position: center 50%;
        background-color: var(--bg-dark);
        border-radius: 0 0 30px 30px;
        margin-top: 0px;
        padding-top: 90px;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section .container {
        padding: 2rem 1.5rem;
    }
    
    .hero-text-bottom-left {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
        padding: 0.5rem 0;
        text-align: left;
        line-height: 1.4;
    }
}

