/* ===================================
   HERO SECTION - VERSION BLEU JOUR (OPTIMISÉE)
   Fichier nettoyé - Seules les classes utilisées sont conservées
   =================================== */

/* Hero Section Bleu Jour - Principale */
.hero-small.hero-day {
    background: linear-gradient(135deg, #87CEEB 0%, #5B9BD5 30%, #4A90E2 70%, #357ABD 100%),
                var(--light-color);
    color: #1a365d;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 30vh;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 -50px 100px rgba(255, 255, 255, 0.3);
}

/* Effet de lumière du soleil */
.hero-small.hero-day::before {
    content: '';
    position: absolute;
    top: -20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 224, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* Nuages subtils */
.hero-small.hero-day::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 200px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 
        150px 30px 0 -10px rgba(255, 255, 255, 0.12),
        350px -10px 0 -15px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@keyframes sunGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-small.hero-day .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

/* SEO H1 : Invisible pour l'utilisateur mais lisible par Google/Bots (Technique sr-only) */
.hero-small.hero-day .seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visual Title : Le vrai titre visuel (Marketing) */
.hero-small.hero-day .hero-visual-title {
    font-family: 'Montserrat', sans-serif !important; /* Force la police */
    color: #1a365d;
    font-size: clamp(2.2rem, 7vw, 4rem);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    font-weight: 900 !important; /* Force l'épaisseur */
    line-height: 1.1;
    letter-spacing: -1px;
    display: block;
}

.hero-small.hero-day .hero-visual-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #1a365d;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-small.hero-day p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    font-weight: 600; /* Moins gras (Semi-bold) */
    opacity: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

/* Variante Hero Accueil Bleu Jour */
.hero-accueil.hero-day { 
    /*background-image: linear-gradient(135deg, rgba(135, 206, 235, 0.85) 0%, rgba(91, 155, 213, 0.85) 30%, rgba(74, 144, 226, 0.85) 70%, rgba(53, 122, 189, 0.85) 100%), 
                      url('/assets/images/hero-about.jpg'); */
    background-attachment: fixed;
    height: 100vh;
    margin-top: -72px; /* CORRECTION : Compense la hauteur du header pour démarrer en haut */
    padding-top: 72px; /* CORRECTION : Ajoute du padding pour que le contenu ne soit pas caché par le header */
}