/* Container principal */
.hero-section {
    position: relative;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    width: 100%;
    background-image: url('../images/1.png'); /* Remplacez par le nom de votre fichier */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay pour améliorer le contraste du texte blanc */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Léger voile noir */
}

/* Contenu textuel */
.hero-content {
    position: relative; /* Pour passer au-dessus de l'overlay */
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; /* Très grand pour l'impact */
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Le bouton blanc */
.btn-confirm {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
}