/* ==============================================
   HERO SWIPER SLIDER STYLES
   ============================================== */

.hero-swiper {
    width: 100%;
    height: 800px;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-swiper .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-swiper .slide-content {
    position: relative;
    z-index: 10;
    max-width: 1170px;
    padding: 0 20px;
    color: #fff;
}

.hero-swiper .slide-title {
    font-family: 'Cuprum', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-swiper .slide-title span {
    color: var(--agex-primary);
}

.hero-swiper .slide-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 50px;
}

.hero-swiper .slide-item {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: #fff;
    background: rgba(134, 137, 93, 0.4);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
}

.hero-swiper .slide-item i {
    color: var(--agex-primary);
    margin-right: 8px;
}

.hero-swiper .swiper-slide-active .animate-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-swiper .animate-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

/* Styles pour le bouton */
.hero-swiper .jtbtn-big {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background: var(--agex-secondary);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-swiper .jtbtn-big:hover {
    background: var(--agex-primary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Navigation buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

/* Pagination */
.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--agex-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   RESPONSIVE STYLES FOR HERO SLIDER
   ============================================== */

@media only screen and (max-width: 767px) {
    .hero-swiper {
        height: 100vh;
        min-height: 600px;
    }

    .hero-swiper .slide-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero-swiper .slide-items {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 35px;
    }

    .hero-swiper .slide-item {
        font-size: 16px;
        padding: 8px 18px;
        width: auto;
        max-width: 90%;
    }

    .hero-swiper .jtbtn-big {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-swiper {
        min-height: 550px;
    }

    .hero-swiper .slide-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .hero-swiper .slide-item {
        font-size: 14px;
        padding: 6px 15px;
    }

    .hero-swiper .jtbtn-big {
        padding: 10px 25px;
        font-size: 14px;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}
