/**
 * Hero Unified v2.0 - Styles minimaux pour compatibilité
 * Note: Les styles principaux sont maintenant dans combined-styles.css
 * Ce fichier reste pour compatibilité avec les autres pages
 */

/* Hero sections - Base */
.hero-section,
.hero,
#hero {
    background-attachment: scroll !important;
    height: 100vh;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 72px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

/* Container dans hero */
.hero-section .container,
.hero .container,
#hero .container {
    padding-top: 0;
}

/* Classes has-hero pour le body */
body.has-hero {
    padding-top: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section,
    .hero,
    #hero {
        padding-top: 60px;
    }
}