/* ======================================================================
   Front Hero — Design #11 (Full-bleed Cinematic Slider, lightSlider engine)
   Library variant. Full-bleed edge-to-edge image carousel with a left
   gradient scrim + container-aligned caption. Class pattern: front-hero-11-*.
   Palette adapts via --bs-primary / --bs-secondary.
   ====================================================================== */

.front-hero-11-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1f14;
}

/* lightSlider wrapper resets → full-bleed, no rounding/gaps */
.front-hero-11-band .lSSlideOuter,
.front-hero-11-band .lSSlideWrapper { margin: 0; border-radius: 0; overflow: hidden; }
.front-hero-11-list { list-style: none; margin: 0; padding: 0; }

.front-hero-11-slide {
    position: relative;
    height: 78vh;
    min-height: 460px;
    max-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
/* readable text over any photo */
.front-hero-11-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(8, 20, 13, 0.78) 0%,
        rgba(8, 20, 13, 0.55) 38%,
        rgba(8, 20, 13, 0.12) 70%,
        transparent 100%);
}

.front-hero-11-inner { position: relative; z-index: 2; }
.front-hero-11-content { max-width: 560px; color: #fff; }

.front-hero-11-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(var(--bs-secondary-rgb, 255, 122, 69), 0.92);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.front-hero-11-title {
    font-size: clamp(2.1rem, 4.6vw, 3.9rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.front-hero-11-title em {
    font-style: italic;
    font-weight: 500;
    color: #ffe6da;
}
.front-hero-11-sub {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.8rem;
    max-width: 460px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.front-hero-11-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: #13261c;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.front-hero-11-cta svg { transition: transform 0.2s ease; }
.front-hero-11-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32); }
.front-hero-11-cta:hover svg { transform: translateX(4px); }

.front-hero-11-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}
.front-hero-11-cta-ghost:hover { color: #fff; border-bottom-color: #fff; }

/* custom arrows wired to the lightSlider API */
.front-hero-11-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.front-hero-11-arrow:hover { background: rgba(255, 255, 255, 0.28); }
.front-hero-11-prev { left: 24px; }
.front-hero-11-next { right: 24px; }

/* lightSlider pager (dots) → elongated active */
.front-hero-11-band .lSSlideOuter .lSPager.lSpg {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 30;
    text-align: center;
}
.front-hero-11-band .lSSlideOuter .lSPager.lSpg > li { padding: 0 5px; }
.front-hero-11-band .lSSlideOuter .lSPager.lSpg > li a {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: none;
    transition: width 0.25s ease, background 0.2s ease;
}
.front-hero-11-band .lSSlideOuter .lSPager.lSpg > li.active a,
.front-hero-11-band .lSSlideOuter .lSPager.lSpg > li:hover a {
    width: 34px;
    background: #fff;
}

@media (max-width: 991.98px) {
    .front-hero-11-slide { height: 62vh; min-height: 400px; }
    .front-hero-11-arrow { display: none; }
}
@media (max-width: 575.98px) {
    .front-hero-11-slide { height: 66vh; min-height: 380px; }
    .front-hero-11-slide::after {
        background: linear-gradient(180deg,
            rgba(8, 20, 13, 0.35) 0%,
            rgba(8, 20, 13, 0.55) 55%,
            rgba(8, 20, 13, 0.82) 100%);
    }
    .front-hero-11-cta-ghost { display: none; }
}
