/* =========================================
   Front Page – Hero
   =========================================
   Colour palette (mirrors style.css tokens):
     --hero-accent   : #2ecc71  (green)
     --hero-dark     : #1a1a1a
     --hero-overlay  : rgba(0,0,0,0.52)
   ========================================= */

/* ── Wrapper ───────────────────────────── */
.fp-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── Slider ────────────────────────────── */
.fp-hero__slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
}

/* ── Individual Slide ──────────────────── */
.fp-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.fp-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Dark overlay ──────────────────────── */
.fp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

/* ── Content block ─────────────────────── */
.fp-hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.fp-hero__content {
    max-width: 640px;
    padding: 2rem 0;
}

/* ── Headline ──────────────────────────── */
.fp-hero__headline {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: #2ecc71;
    font-style: italic;
}

/* ── Body text ─────────────────────────── */
.fp-hero__body {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.25rem;
}

/* ── CTA Button ────────────────────────── */
.fp-hero__cta {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: #ffffff;
    color: #111111;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.fp-hero__cta:hover {
    background: #2ecc71;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 204, 113, 0.38);
}

/* ── Controls wrapper ──────────────────── */
.fp-hero__controls {
    position: absolute;
    bottom: 110px; /* sits above the stats strip */
    right: 0;
    left: 0;
    z-index: 10;
    pointer-events: none; /* children re-enable */
}

/* ── Arrows ────────────────────────────── */
.fp-hero__arrows {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    bottom: 0;
    display: flex;
    gap: 0.6rem;
    pointer-events: auto;
}

.fp-hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.fp-hero__arrow:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    transform: scale(1.08);
}

/* ── Dots ──────────────────────────────── */
.fp-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
    pointer-events: auto;
}

.fp-hero__dot {
    width: 28px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
    padding: 0;
}
.fp-hero__dot.is-active {
    background: #2ecc71;
    width: 40px;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 768px) {
    .fp-hero__slider {
        min-height: 520px;
    }
    .fp-hero__controls {
        bottom: 2rem;
    }
    .fp-hero__arrows {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .fp-hero__dot { width: 20px; }
    .fp-hero__dot.is-active { width: 30px; }
}
