/* ----------------------------------------------------
   CAROUSEL GLOBAL
---------------------------------------------------- */
.carousel-inner {
    background: #000;
    border-bottom-left-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

/* Desktop */
@media (min-width: 768px) {
    .carousel-inner {
        border-bottom-left-radius: 80px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
}

/* ----------------------------------------------------
   IMAGE
---------------------------------------------------- */
.hero-slide-img {
    height: 100svh;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ----------------------------------------------------
   OVERLAY
---------------------------------------------------- */
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 2;
}

/* Desktop overlay */
@media (min-width: 768px) {
    .carousel-item {
        height: 100svh;
    }
    .carousel-item::after {
        background: linear-gradient(to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.7) 100%
        );
    }
}

/* ----------------------------------------------------
   TEXTE DU SLIDE
---------------------------------------------------- */
.carousel-caption {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 45%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0;
}

.carousel-caption h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 15px;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: #fff;
    background: rgba(241, 4, 4, 0.9);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop text */
@media (min-width: 768px) {
    .carousel-caption {
        left: 8%;
        right: 50%;
        top: 40%;
        text-align: right;
    }
    .carousel-caption h1 {
        font-size: 3rem;
    }
    .carousel-caption p {
        background: none;
        color: #f10404;
        padding: 0;
    }
}

/* Desktop large */
@media (min-width: 768px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
        font-weight: bold;
    }
}

/* ----------------------------------------------------
   BOUTON
---------------------------------------------------- */
.btn-slide {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    background: #fff;
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
