/* ---------- index.html ---------- */

/* Reset minimal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overscroll-behavior: none;
}

/* Variables de couleurs */
:root {
    --bg-dark: #111;
    --bg-light: #f4f4f4;
    --primary: #e10600;
    --text-light: #fff;
    --text-dark: #222;
    --font-main: 'Orbitron', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.6;
}

.backgroundImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

/* Conteneur centré */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: var(--bg-dark);
    color: var(--text-light);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar .logo {
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.navbar nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.navbar nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.hero .btn:hover {
    opacity: 0.8;
}

/* Titre et sous-titre
.about h2 {
    margin-top: 18rem;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.about .subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--bg-light);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
} */

/* Citation */
.quote {
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
    color: #b7b7b7;
    max-width: 600px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}



/* Footer */
footer {
    /* le footer reste en base de page */
    bottom: 0;
    width: 100%;
    position: fixed;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 1rem 0;
}