* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Container principal pour l'image */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Image de fond avec balise img */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Montre le bas en priorité */
    z-index: 1;
}

/* Container pour le contenu en surimpression */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* center; */
    z-index: 3;
    padding: 2rem;
    text-align: left; /* center; */
}

/* Styles pour le texte en surimpression */
.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ffbb02; /* Couleur du titre */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffbb02; /* Couleur du sous-titre */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Section de contenu sous l'image */
.content-section {
    background-color: #ffffff;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
}

.content-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.legal-text {
    font-size: 0.6rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.commentaire-text {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

