/**
 * Hero-sectie voor Wieke Logistics.
 *
 * Ontwerp:
 * - Donkerpaarse, krachtige achtergrond
 * - Asymmetrische tweekolomsindeling
 * - Oranje routeaccenten
 * - Witte typografie en lichte informatiekaarten
 * - Fotokader met zwevende statuskaarten
 */

/* =========================================================
   1. HERO-BASIS
   ========================================================= */

.wieke-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(235, 103, 9, 0.2),
            transparent 27rem
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 31rem
        ),
        linear-gradient(
            135deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple-dark) 52%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-hero::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 38%;
    height: 0.35rem;
    border-radius: 0 var(--wieke-radius-pill) var(--wieke-radius-pill) 0;
    background: var(--wieke-orange);
    content: "";
}

.wieke-hero::after {
    position: absolute;
    right: -10rem;
    bottom: 7rem;
    z-index: -1;
    width: 26rem;
    height: 26rem;
    border: 4rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}


/* =========================================================
   2. DECORATIEVE ACHTERGROND
   ========================================================= */

.wieke-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.wieke-hero__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(0);
}

.wieke-hero__shape--one {
    top: 5%;
    left: -9rem;
    width: 18rem;
    height: 18rem;
    border: 2.5rem solid rgba(235, 103, 9, 0.09);
}

.wieke-hero__shape--two {
    top: 12%;
    right: 5%;
    width: 5.5rem;
    height: 5.5rem;
    border: 1rem solid rgba(255, 255, 255, 0.055);
}

.wieke-hero__route-line {
    position: absolute;
    right: 4%;
    bottom: 18%;
    width: 36%;
    height: 40%;
    border-right: 2px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 0 0 8rem 0;
    transform: rotate(-8deg);
}

.wieke-hero__route-line::before,
.wieke-hero__route-line::after {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    border: 0.22rem solid var(--wieke-white);
    border-radius: 50%;
    background: var(--wieke-orange);
    box-shadow:
        0 0 0 0.2rem rgba(235, 103, 9, 0.2);
    content: "";
}

.wieke-hero__route-line::before {
    top: -0.2rem;
    right: -0.45rem;
}

.wieke-hero__route-line::after {
    right: 29%;
    bottom: -0.45rem;
}


/* =========================================================
   3. HOOFDINDELING
   ========================================================= */

.wieke-hero__inner {
    display: grid;
    min-height: clamp(42rem, 76vh, 52rem);
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(30rem, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6.5rem);
    padding-block:
        clamp(4.5rem, 8vw, 7.5rem)
        clamp(5rem, 9vw, 8rem);
}

.wieke-hero__content {
    position: relative;
    z-index: 3;
    max-width: 43rem;
}


/* =========================================================
   4. HERO-TEKST
   ========================================================= */

.wieke-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.3rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--wieke-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--wieke-white);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--wieke-shadow-small);
    backdrop-filter: blur(8px);
}

.wieke-hero__eyebrow-dot {
    position: relative;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--wieke-orange);
    box-shadow:
        0 0 0 0.25rem rgba(235, 103, 9, 0.12);
}

.wieke-hero__eyebrow-dot::after {
    position: absolute;
    inset: -0.35rem;
    border: 1px solid rgba(235, 103, 9, 0.2);
    border-radius: 50%;
    content: "";
}

.wieke-hero__title {
    max-width: 11ch;
    margin-bottom: 1.5rem;
    color: var(--wieke-white);
    font-size: clamp(3rem, 5.8vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.wieke-hero__title::after {
    display: block;
    width: clamp(5rem, 14vw, 8.5rem);
    height: 0.36rem;
    margin-top: 1.35rem;
    border-radius: var(--wieke-radius-pill);
    background:
        linear-gradient(
            90deg,
            var(--wieke-orange) 0%,
            var(--wieke-orange) 62%,
            rgba(235, 103, 9, 0.16) 62%,
            rgba(235, 103, 9, 0.16) 100%
        );
    content: "";
}

.wieke-hero__lead {
    max-width: 39rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.65;
}


/* =========================================================
   5. ACTIEKNOPPEN
   ========================================================= */

.wieke-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.wieke-hero__actions .wieke-button {
    min-width: 13.5rem;
}

.wieke-hero__actions .wieke-button--secondary {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: var(--wieke-white);
    backdrop-filter: blur(8px);
}

.wieke-hero__actions .wieke-button--secondary:hover,
.wieke-hero__actions .wieke-button--secondary:focus-visible {
    border-color: var(--wieke-white);
    background: var(--wieke-white);
    color: var(--wieke-purple-dark);
}


/* =========================================================
   6. HERO-VOORDELEN
   ========================================================= */

.wieke-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wieke-hero__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
}

.wieke-hero__highlights svg {
    width: 1.15rem;
    height: 1.15rem;
    padding: 0.1rem;
    border-radius: 50%;
    background: rgba(235, 103, 9, 0.18);
    color: var(--wieke-orange-light);
}


/* =========================================================
   7. VISUELE KOLOM
   ========================================================= */

.wieke-hero__visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding:
        clamp(1.5rem, 3vw, 2.5rem)
        clamp(1rem, 2vw, 2rem)
        clamp(2rem, 3vw, 3rem);
}

.wieke-hero__visual::before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 82%;
    height: 86%;
    border-radius:
        46% 54% 38% 62% /
        42% 38% 62% 58%;
    background:
        linear-gradient(
            145deg,
            var(--wieke-orange) 0%,
            var(--wieke-orange-dark) 100%
        );
    content: "";
    transform: rotate(3deg);
    box-shadow:
        0 1.75rem 4.5rem rgba(61, 58, 82, 0.22);
}

.wieke-hero__visual::after {
    position: absolute;
    right: -1.5rem;
    bottom: 1rem;
    z-index: -2;
    width: 70%;
    height: 40%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(2rem);
    content: "";
}


/* =========================================================
   8. AFBEELDING
   ========================================================= */

.wieke-hero__image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 0.65rem solid rgba(255, 255, 255, 0.94);
    border-radius:
        2rem 5.5rem 2rem 2rem;
    background: var(--wieke-purple-light);
    box-shadow: var(--wieke-shadow-large);
    transform: rotate(-1.5deg);
}

.wieke-hero__image-frame::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(46, 44, 61, 0.32) 100%
        );
    content: "";
    pointer-events: none;
}

.wieke-hero__image-frame::after {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    z-index: 2;
    width: 1rem;
    height: 1rem;
    border: 0.23rem solid var(--wieke-white);
    border-radius: 50%;
    background: var(--wieke-orange);
    box-shadow:
        0 0 0 0.3rem rgba(235, 103, 9, 0.24);
    content: "";
}

.wieke-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    transition: transform 700ms ease;
}

.wieke-hero__image-frame:hover .wieke-hero__image {
    transform: scale(1.055);
}

.wieke-hero__image-accent {
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 3;
    width: 32%;
    height: 0.5rem;
    border-radius:
        var(--wieke-radius-pill) 0 0 0;
    background: var(--wieke-orange);
}


/* =========================================================
   9. ZWEVENDE KAARTEN
   ========================================================= */

.wieke-hero__status-card,
.wieke-hero__location-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--wieke-shadow-medium);
    backdrop-filter: blur(14px);
}

.wieke-hero__status-card {
    right: -1rem;
    bottom: 0;
    max-width: 18rem;
    padding: 0.9rem 1rem;
    border-radius: 1.1rem 1.1rem 0.25rem 1.1rem;
}

.wieke-hero__location-card {
    top: 0.5rem;
    left: -1.5rem;
    max-width: 17rem;
    padding: 0.85rem 1rem;
    border-radius: 0.25rem 1.1rem 1.1rem 1.1rem;
}

.wieke-hero__status-icon,
.wieke-hero__location-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.wieke-hero__status-icon {
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-hero__location-icon {
    background: var(--wieke-purple-light);
    color: var(--wieke-purple-dark);
}

.wieke-hero__status-text,
.wieke-hero__location-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.35;
}

.wieke-hero__status-text strong,
.wieke-hero__location-card strong {
    color: var(--wieke-purple-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.wieke-hero__status-text span,
.wieke-hero__location-card small {
    margin-top: 0.15rem;
    color: var(--wieke-text-light);
    font-size: 0.76rem;
}


/* =========================================================
   10. ONDERSTE VERTROUWENSBALK
   ========================================================= */

.wieke-hero__bottom-strip {
    position: relative;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(
            90deg,
            #282635 0%,
            var(--wieke-purple-darker) 52%,
            var(--wieke-purple-dark) 100%
        );
    color: var(--wieke-white);
}

.wieke-hero__bottom-strip::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 22%;
    height: 100%;
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(235, 103, 9, 0.16) 100%
        );
    content: "";
    pointer-events: none;
}

.wieke-hero__bottom-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wieke-hero__bottom-item {
    position: relative;
    display: flex;
    min-height: 7rem;
    flex-direction: column;
    justify-content: center;
    padding:
        1.5rem
        clamp(1rem, 2vw, 1.75rem);
}

.wieke-hero__bottom-item:not(:last-child)::after {
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: rgba(255, 255, 255, 0.16);
    content: "";
}

.wieke-hero__bottom-item::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.25rem;
    height: 2.2rem;
    border-radius: 0 var(--wieke-radius-pill) var(--wieke-radius-pill) 0;
    background: var(--wieke-orange);
    content: "";
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity var(--wieke-transition);
}

.wieke-hero__bottom-item:hover::before {
    opacity: 1;
}

.wieke-hero__bottom-item strong {
    margin-bottom: 0.3rem;
    color: var(--wieke-white);
    font-family: var(--wieke-font-heading);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 800;
}

.wieke-hero__bottom-item span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    line-height: 1.45;
}