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

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

h1, h2 {
    line-height: 1.2;
}

.hero {
    background: url('./media/background.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.about, .how {
    padding: 50px 0;
    text-align: center;
}

.about h2, .how h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.about p, .how ul {
    font-size: 1.25rem;
    color: #555;
}

.how ul {
    list-style: none;
    padding: 0;
}

.how li {
    margin-bottom: 15px;
}

.how strong {
    color: #333;
}

.hero h1 .highlight, .hero .tagline .highlight {
    background-color: rgba(0, 0, 0, 0.7); /* Fond translucide noir */
    padding: 10px 20px; /* Espacement interne */
    border-radius: 12px; /* Coins arrondis */
    display: inline-block; /* S'ajuste à la taille du texte */
}

.hero .tagline .highlight {
    font-size: 1.25rem; /* Taille de texte ajustée pour correspondre à la tagline */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}
