/* Full-width hero slider — brand reds align with navbar (#8b000f / #7A0115) */

.home-hero-slider {
    position: relative;
    width: 100%;
    max-height: min(72vh, 640px);
    min-height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}

.home-hero-slider__slides {
    position: relative;
    width: 100%;
    height: min(72vh, 640px);
    min-height: 320px;
}

.home-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 0;
}

.home-hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-hero-slider__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 2;
}

.home-hero-slider__inner {
    position: relative;
    z-index: 3;
    max-width: 1350px;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4.5rem) 20px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.home-hero-slider__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    max-width: 36ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.home-hero-slider__desc {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 42ch;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.home-hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(139, 0, 15, 0.92);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.home-hero-slider__nav:hover {
    background: #7a0115;
    transform: translateY(-50%) scale(1.05);
}

.home-hero-slider__nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.home-hero-slider__nav--prev {
    left: clamp(8px, 2vw, 24px);
}

.home-hero-slider__nav--next {
    right: clamp(8px, 2vw, 24px);
}

.home-hero-slider__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    align-items: center;
}

.home-hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.home-hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.35);
}

.home-hero-slider__dot.is-active {
    background: #8b000f;
    border-color: #fff;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .home-hero-slider__nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}
