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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-image: url('img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header {
    background-color: rgba(0, 0, 0, 0.8); /* Ajout du fond noir semi-transparent */
    color: #fff;
    text-align: center;
    padding: 3rem 2rem; /* Ajout d'un padding supplémentaire pour le contenu */
    margin-top: 70px; /* Décalage pour éviter le chevauchement avec la navbar */
    border-radius: 10px; /* Bord arrondi pour un style plus moderne */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: 2.5rem; /* Taille du texte principale */
}

header p {
    font-size: 1.2rem; /* Taille du texte secondaire */
}

.navbar {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #007bff;
    border-radius: 5px;
}

.content {
    margin-top: 50px; /* Pour éviter que le contenu soit masqué par la navbar */
    text-align: center;
    padding: 2rem 20px;
}

.cta {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

.cta h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
