/* css/components/Home/Hero.css */
.home-hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

/* Specifieke positie voor de tweede slide (Over Koeleman) */
.hero-slide:nth-child(2) {
    background-position: center top; /* Lijn uit aan de bovenkant */
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(236, 229, 219, 0.95) 0%, rgba(236, 229, 219, 0.7) 40%, rgba(236, 229, 219, 0.1) 100%);
    z-index: 3;
}
.hero-content-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 4;
}
.hero-text-content {
    margin-top: .1rem;
    width: 100%;
}
@media (min-width: 768px) { .hero-text-content { width: 80%; } }
@media (min-width: 1024px) { .hero-text-content { width: 80%; } }

.hero-title {
    font-size: 2.25rem; /* 36px */
    margin-top: 5rem;
    margin-bottom: 1rem;
    color: var(--koeleman-blue);
    line-height: 1.2;
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } } /* 48px */
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } } /* 60px */

.hero-subtitle {
    margin-top: 1rem; /* 24px */
    font-size: 1.125rem; /* 18px */
    max-width: 36rem; /* 576px */
    color: var(--text-primary);
}

.hero-cta-button {
    margin-top: 2rem; /* 32px */
    display: inline-block;
    background-color: var(--koeleman-blue);
    color: var(--koeleman-white);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.hero-cta-button:hover {
    transform: scale(1.05);
    background-color: #142a57;
}

a:visited {
    color: var(--koeleman-white);
}

a:hover {
    color: var(--koeleman-white);
}