/*
 * Hero Section Styles - Tango-Argentin.fr
 * Styles communs pour les sections hero sur toutes les pages
 */

/* Base hero styles */
.hero-tagline {
    position: relative;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/*
 * Image variants - utiliser une de ces classes avec .hero-tagline
 * Exemple: <section class="hero-tagline hero-milonga">
 */

/* Variant 1: Hero Milonga (page d'accueil, about) - T_0984 */
.hero-milonga {
    background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('/resources/img/T_0984_Les_9_Billards_mobile.jpeg');
}

@media (min-width: 769px) {
    .hero-milonga {
        background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('/resources/img/T_0984_Les_9_Billards.jpeg');
    }
}

/* Variant 2: Hero Geo (pages ville/city) - T_1086 */
.hero-geo {
    background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('/resources/img/T_1086_Les_Metallos_geo_mobile.jpeg');
}

@media (min-width: 769px) {
    .hero-geo {
        background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('/resources/img/T_1086_Les_Metallos_geo.jpeg');
    }
}

/* Variant 3: Hero Classes (cours, stages, autres) - T_1063 avec overlay plus sombre */
.hero-classes {
    background-image: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)), url('/resources/img/T_1063_Les_Metallos_classes_mobile.jpeg');
}

@media (min-width: 769px) {
    .hero-classes {
        background-image: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)), url('/resources/img/T_1063_Les_Metallos_classes.jpeg');
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .hero-tagline {
        padding: 1rem 0.8rem;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    /* Hero Milonga: overlay plus léger + position 35% sur mobile */
    .hero-milonga {
        background-position: center 35%;
        background-image: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)), url('/resources/img/T_0984_Les_9_Billards_mobile.jpeg');
    }

    /* Hero Geo: overlay plus léger + position 35% sur mobile */
    .hero-geo {
        background-position: center 35%;
        background-image: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)), url('/resources/img/T_1086_Les_Metallos_geo_mobile.jpeg');
    }

    /* Hero Classes: position 65% sur mobile pour cacher les visages */
    .hero-classes {
        background-position: center 65%;
        background-image: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)), url('/resources/img/T_1063_Les_Metallos_classes_mobile.jpeg');
    }
}
