/* === STYLE GLOBAL === */
body, html {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    height: 100%;
}

/* === HEADER === */
header {
    background-color: #111;
    border-bottom: 2px solid #34febb;
    padding: 15px 0;
    position: sticky; top: 0; z-index: 1000;
}
nav { display: flex; justify-content: center; gap: 30px; font-size: 1.1em; flex-wrap: wrap; padding: 0 10px; }
nav a { color: white; text-decoration: none; transition: 0.3s; }
nav a:hover { color: #34febb; text-decoration: underline; }
.nav-separator { color: #555; }
.nav-en { font-weight: bold; color: #34febb; }

/* === CONTAINER === */
.container {
    width: 100%; max-width: 900px; margin: 0 auto; padding: 40px 20px;
    box-sizing: border-box;
}

/* === TYPOGRAPHIE === */
h1 {
    color: #34febb; text-transform: uppercase; letter-spacing: 2px;
    border-bottom: 1px solid #333; padding-bottom: 15px; margin-top: 50px; margin-bottom: 30px;
}
h2 { color: #fff; margin-top: 25px; font-size: 1.3em; border-left: 3px solid #34febb; padding-left: 10px; }
p, ul { line-height: 1.6; color: #ccc; margin-bottom: 15px; }
ul { margin-left: 20px; }
li { margin-bottom: 5px; }
a { color: #34febb; text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #fff; font-weight: bold; }

/* === SECURITE EMAIL === */
.obfuscated { cursor: pointer; color: #fff; text-decoration: underline; transition: color 0.3s; }
.obfuscated:hover { color: #34febb; }

/* === CADRES === */
.legal-block {
    background: #111; border: 1px solid #222;
    padding: 30px; border-radius: 8px; margin-bottom: 40px;
    box-sizing: border-box;
}

footer {
    background-color: #111; color: #fff;
    text-align: center; padding: 20px 10px;
    margin-top: 40px; border-top: 1px solid #222;
    padding-bottom: 60px;
}
footer a { color: #fff !important; text-decoration: none; font-size: 0.9em; }
footer a:hover { text-decoration: underline; color: #34febb !important; }

#cookie-banner {
    position: fixed; bottom: 0; width: 100%;
    background-color: #111; border-top: 1px solid #34febb;
    color: #fff; text-align: center; padding: 10px;
    font-size: 14px; z-index: 1000;
}

/* === RESPONSIVE TABLETTE === */
@media (max-width: 768px) {
    nav { gap: 15px; font-size: 0.95em; }
    h1 { font-size: 1.4em; letter-spacing: 1px; margin-top: 30px; }
    h2 { font-size: 1.1em; }
    .legal-block { padding: 20px; }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 480px) {
    nav { gap: 10px; font-size: 0.85em; }
    .container { padding: 20px 15px; }
    h1 { font-size: 1.2em; }
    h2 { font-size: 1em; }
    .legal-block { padding: 15px; }
    p, ul { font-size: 0.95em; }
}
