/* hero.css */

/* Styles pour la section héros */
.hero {
    background-image: url('../images/testing.jpg'); /* Chemin d'accès ajusté */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
	z-index: 0;
}

/* Styles pour le contenu de la section héros */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles pour le titre de la section héros */
.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff; /* Texte en blanc */
}

/* Styles pour les paragraphes de la section héros */
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #fff; /* Texte en blanc */
}

/* Styles pour les liens de la section héros */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}
