/* Hero Section avec Image de Fond et Overlay */
.hero-section {
    position: relative;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Effet parallaxe optionnel */
}

/* Overlay pour fondre l'image avec la couleur */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    opacity: 0.75; /* Ajustez cette valeur (0.5 à 0.9) pour contrôler l'intensité du fondu */
    z-index: 0;
}

/* Pattern SVG existant au-dessus de l'overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
    animation: patternMove 20s linear infinite;
}

/* Contenu texte à gauche */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Image en premier plan (à droite) */
.hero-section .col-lg-6:has(img) {
    position: relative;
    z-index: 3;
}

/* Alternative pour navigateurs sans support :has() */
.hero-section .col-lg-6.mt-5.mt-lg-0.animate-slide-up {
    position: relative;
    z-index: 3;
}

/* Conteneur de l'image et image elle-même en premier plan */
.hero-section .col-lg-6 .position-relative {
    position: relative;
    z-index: 3;
}

.hero-section .col-lg-6 img {
    position: relative;
    z-index: 3;
}

/* Responsive : Désactiver parallaxe sur mobile pour performance */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    /* Overlay plus intense sur mobile pour meilleure lisibilité */
    .hero-section::after {
        opacity: 0.85;
    }
}

/* Animation pour le pattern */
@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

