/* Animaties */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.richard-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
    border-radius: 40px;
}

.richard-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.richard-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Standaard overlay opacity */
    z-index: 2;
}

.richard-hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 3;
    padding: 0 40px;
    width: 100%;
}

.richard-hero-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 0px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.richard-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    margin-top: 0px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.richard-hero-button-container {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Responsieve aanpassingen */
@media screen and (max-width: 768px) {
    .richard-hero {
        height: 70vh;
    }
    
    .richard-hero-content {
        bottom: 40px;
    }
    
    .richard-hero-title {
        font-size: 36px;
    }
    
    .richard-hero-subtitle {
        font-size: 18px;
    }
} 