/* hero */

.hero {
    position: relative;
    color: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #0c2b23 center/cover no-repeat;
    background-image:
        linear-gradient(180deg, rgba(6, 30, 24, 0.55) 0%, rgba(6, 30, 24, 0.25) 45%, rgba(6, 30, 24, 0.75) 100%),
        url('../images/header.svg');
}

.hero-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3.5rem;
}

.hero .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero h1 { color: var(--white); }

.hero p {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions { margin-top: 1.75rem; }

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
}

.hero-scroll svg { width: 16px; height: 16px; animation: bounce 1.8s ease-in-out infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* intro / "herkenbaar door ons embleem" */

.intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
}

.intro-copy p:last-child { font-weight: 600; margin-bottom: 0; }

.intro-figure {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.intro-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-shield {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 34%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

@media (max-width: 820px) {
    .intro { grid-template-columns: 1fr; }
}

/* gallery / carousel */

.gallery {
    background: var(--green);
    padding: 4.5rem 1.5rem;
}

.gallery-head {
    max-width: var(--container-width);
    margin: 0 auto 2.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-head .eyebrow { color: var(--ink); opacity: 0.75; }
.gallery-head p:last-child { max-width: 56ch; margin-bottom: 0; }

.carousel {
    max-width: var(--container-width);
    margin: 0 auto;
    --swiper-theme-color: var(--ink);
}

.gallery-swiper .swiper-slide {
    position: relative;
    width: min(320px, 82vw);
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-m);
    overflow: hidden;
}

.carousel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-shield {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 44%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.carousel-progress {
    flex: 1;
    height: 2px;
    background: rgba(0, 68, 62, 0.25);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.carousel-arrows { display: flex; gap: 0.5rem; }

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.12s ease;
}

.carousel-arrow:hover { transform: translateY(-1px); }
.carousel-arrow:disabled,
.carousel-arrow.swiper-button-disabled { opacity: 0.45; cursor: default; transform: none; }
