/*
 * Homepage Styles
 * Styles professionnels pour la page d'accueil du Camp de la Jeunesse
 */

/* ==================== Variables CSS ==================== */
:root {
    --home-primary: #1a5652;
    --home-primary-dark: #134340;
    --home-accent: #f97316;
    --home-secondary: #dc2626;
    --home-gold: #eab308;
    --home-light-bg: #f8f9fa;
    --home-white: #ffffff;
    --home-text-dark: #2c3e50;
    --home-text-light: #6c757d;
    --home-border: rgba(0, 0, 0, 0.1);
    --home-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --home-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s ease;
}

/* ==================== Hero Slider Customizations ==================== */
.slider-area .hero-caption .hero-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--home-white);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: none;
}

.slider-area .hero-caption .hero-text i {
    color: var(--home-gold);
    font-size: 18px;
}

.slider-area .hero-caption .hero-verse {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--home-gold);
    border-radius: 8px;
    padding: 20px;
    color: var(--home-gold);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
}

.slider-area .hero-caption .hero-verse strong {
    color: var(--home-white);
    font-style: normal;
    font-weight: 600;
}

.slider-area .hero-caption .hero-info {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.slider-area .hero-caption .hero-info i {
    color: var(--home-accent);
}

.slider-area .hero-caption .hero-features {
    color: var(--home-white);
    font-size: 15px;
}

.slider-area .hero-caption .hero-features span {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 15px;
    text-transform: none;
    margin-bottom: 0;
    display: inline-block;
}

.slider-area .hero-caption .hero-features i {
    color: var(--home-gold);
}

/* ==================== Animations pour les boutons ==================== */
@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(249, 115, 22, 0.6);
    }
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes btnBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Bouton Hero customisé */
.slider-area .hero-btn {
    background: var(--home-accent);
    color: var(--home-white);
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

.slider-area .hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.slider-area .hero-btn:hover {
    background: var(--home-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: none;
}

/* Images de fond du slider */
.slider-bg1 {
    background-image: url(../assets/img/hero/h1_hero1.jpg);
}

.slider-bg2 {
    background-image: url(../assets/img/hero/h1_hero2.jpg);
}

.slider-bg3 {
    background-image: url(../assets/img/hero/h1_hero3.jpg);
}

.slider-bg4 {
    background-image: url(../assets/img/hero/h1_hero1.jpg);
}

/* Les overlays sont déjà gérés par le template style.css */

/* ==================== Old Hero Section (can be removed) ==================== */
.home-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--home-primary) 100%);
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--home-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-badge i {
    color: var(--home-gold);
    font-size: 1.1rem;
}

.home-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--home-white) !important;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.home-hero-verse {
    font-size: 1.1rem;
    color: var(--home-gold);
    font-style: italic;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--home-gold);
    border-radius: 8px;
}

.home-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--home-accent) 0%, #ea580c 100%);
    color: var(--home-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

.home-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
    z-index: 1;
}

.home-btn-primary i,
.home-btn-primary span {
    position: relative;
    z-index: 2;
}

.home-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
    color: var(--home-white);
    animation: none;
}

.home-btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.home-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: var(--home-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.home-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--home-white);
    color: var(--home-white);
}

/* Stats Section */
.home-stats {
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

.home-stat-card {
    background: var(--home-white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--home-shadow-lg);
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--home-primary);
}

.home-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.home-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-white);
    font-size: 1.8rem;
}

.home-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--home-primary);
    margin-bottom: 5px;
    line-height: 1;
}

.home-stat-label {
    font-size: 1rem;
    color: var(--home-text-light);
    font-weight: 500;
}

/* ==================== About Section ==================== */
.home-about {
    padding: 100px 0;
    background: var(--home-white);
}

.home-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    color: var(--home-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--home-text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.home-section-description {
    font-size: 1.15rem;
    color: var(--home-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.home-about-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.home-feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--home-light-bg);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.home-feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.home-feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--home-accent) 0%, #ea580c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-white);
    font-size: 1.4rem;
}

.home-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--home-text-dark);
    margin-bottom: 8px;
}

.home-feature-content p {
    font-size: 0.95rem;
    color: var(--home-text-light);
    margin: 0;
    line-height: 1.6;
}

.home-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--home-shadow-lg);
}

.home-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 86, 82, 0.2) 0%, rgba(19, 67, 64, 0.2) 100%);
    z-index: 1;
}

.home-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.home-about-image:hover img {
    transform: scale(1.05);
}

/* ==================== Programs Section ==================== */
.home-programs {
    padding: 100px 0;
    background: var(--home-light-bg);
}

.home-program-card {
    background: var(--home-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--home-shadow-lg);
}

.home-program-icon {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.home-program-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -25%;
    left: -25%;
}

.home-program-icon i {
    position: relative;
    z-index: 1;
}

/* Variants d'icônes */
.home-program-icon.icon-sport {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.home-program-icon.icon-creative {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.home-program-icon.icon-spiritual {
    background: linear-gradient(135deg, var(--home-gold) 0%, #ca8a04 100%);
}

.home-program-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.home-program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--home-text-dark);
    margin-bottom: 15px;
}

.home-program-description {
    font-size: 1rem;
    color: var(--home-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.home-program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.home-program-link:hover {
    color: var(--home-accent);
    gap: 12px;
}

/* ==================== Current Camp Section ==================== */
.home-current-camp {
    padding: 100px 0;
    background: var(--home-white);
}

.home-camp-featured {
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--home-primary) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--home-shadow-lg);
    position: relative;
}

.home-camp-featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.home-camp-content {
    padding: 60px;
    color: var(--home-white);
    position: relative;
    z-index: 2;
}

.home-camp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--home-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.home-camp-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--home-white) !important;
}

.home-camp-theme {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--home-gold);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.home-camp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.home-camp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.home-camp-info-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-gold);
    font-size: 1.2rem;
}

.home-camp-info-text strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.home-camp-info-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.home-camp-price {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.home-camp-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--home-white);
}

.home-camp-price-detail {
    font-size: 0.95rem;
    opacity: 0.9;
}

.home-camp-image {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-camp-poster {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.home-camp-poster:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ==================== Past Camps Section ==================== */
.home-past-camps {
    padding: 100px 0;
    background: var(--home-light-bg);
}

.home-camp-card {
    background: var(--home-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-camp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-lg);
}

.home-camp-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.home-camp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.home-camp-card:hover .home-camp-card-image img {
    transform: scale(1.1);
}

.home-camp-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 18px;
    background: var(--home-accent);
    color: var(--home-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.home-camp-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.home-camp-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--home-text-dark);
    margin-bottom: 12px;
}

.home-camp-card-title a {
    color: var(--home-text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.home-camp-card-title a:hover {
    color: var(--home-primary);
}

.home-camp-card-description {
    font-size: 0.95rem;
    color: var(--home-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.home-camp-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--home-border);
    margin-bottom: 20px;
}

.home-camp-card-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--home-text-light);
}

.home-camp-card-info-item i {
    color: var(--home-primary);
    width: 20px;
}

.home-camp-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--home-light-bg);
    color: var(--home-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.home-camp-card-link:hover {
    background: var(--home-primary);
    color: var(--home-white);
}

/* ==================== YouTube Section ==================== */
.home-youtube {
    padding: 120px 0;
    background: var(--home-white);
}

.home-youtube-frame-wrap {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--home-shadow-lg);
    background: #000;
}

.home-youtube-frame-wrap::before {
    content: '';
    display: block;
    padding-top: 60%;
}

.home-youtube-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-youtube-link {
    border-color: var(--home-primary);
    color: var(--home-primary);
}

.home-youtube-link:hover {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: var(--home-white);
}

@media (max-width: 1199px) {
    .home-youtube-frame-wrap::before {
        padding-top: 56.25%;
    }
}

/* ==================== CTA Section ==================== */
.home-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--home-primary) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.home-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.home-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--home-white);
}

.home-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--home-gold);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.home-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.home-cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    color: #ffffff !important;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 991px) {
    .home-hero-title {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.15rem;
    }

    .home-section-title {
        font-size: 2.2rem;
    }

    .home-camp-content,
    .home-camp-image {
        padding: 40px;
    }

    .home-camp-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .home-slider-area .slider-height {
        min-height: 620px;
    }

    .home-slider-area .single-slider {
        align-items: flex-start !important;
        padding-top: 95px;
        padding-bottom: 35px;
    }

    .home-slider-area .hero-caption {
        background: rgba(19, 67, 64, 0.62);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 14px;
        padding: 20px 16px;
        backdrop-filter: blur(3px);
    }

    .home-slider-area .hero-caption h1 {
        font-size: 1.85rem;
        line-height: 1.28;
        margin-bottom: 14px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }

    .home-slider-area .hero-caption p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.98);
    }

    .home-slider-area .hero-caption .hero-text {
        font-size: 0.88rem;
        padding: 8px 14px;
        margin-bottom: 14px !important;
    }

    .home-slider-area .hero-caption .hero-verse {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 14px;
        margin-bottom: 16px !important;
    }

    .home-slider-area .hero-caption .hero-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px !important;
    }

    .home-slider-area .hero-caption .hero-features {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .home-slider-area .hero-caption .hero-features span {
        font-size: 0.86rem;
        padding: 6px 12px;
    }

    .home-slider-area .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .home-hero-content {
        padding: 60px 0 50px;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-subtitle {
        font-size: 1rem;
    }

    .home-hero-buttons {
        flex-direction: column;
    }

    .home-btn-primary,
    .home-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .home-stats {
        margin-top: 0;
        padding-top: 40px;
    }

    .home-section-title {
        font-size: 1.8rem;
    }

    .home-camp-content,
    .home-camp-image {
        padding: 30px;
    }

    .home-camp-title {
        font-size: 1.8rem;
    }

    .home-camp-theme {
        font-size: 1.2rem;
    }

    .home-camp-info-grid {
        grid-template-columns: 1fr;
    }

    .home-youtube {
        padding: 70px 0;
    }

    .home-youtube-frame-wrap {
        border-radius: 14px;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .home-slider-area .slider-height {
        min-height: 670px;
    }

    .home-slider-area .hero-caption h1 {
        font-size: 1.65rem;
    }
}

/* ==================== Header Button Animation ==================== */
.header-btn {
    background: linear-gradient(135deg, var(--home-accent) 0%, #ea580c 100%);
    color: var(--home-white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
    z-index: 1;
}

.header-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
    color: var(--home-white) !important;
    animation: none;
}

.header-btn:active {
    transform: translateY(0) scale(1);
}

/* ==================== Animations globales pour tous les boutons d'inscription ==================== */
.loan-btn,
.about-btn,
.btn-success {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.loan-btn::before,
.about-btn::before,
.btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
    z-index: 1;
}

.loan-btn:hover,
.about-btn:hover,
.btn-success:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.loan-btn:active,
.about-btn:active,
.btn-success:active {
    transform: translateY(-1px) scale(1.02);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out both;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Délais d'animation */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}