/* public_html/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #050505;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    /* Grille de fond */
    background-image: 
        linear-gradient(rgba(0, 50, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 50, 0, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* NAVIGATION */
nav {
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}
nav a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}
nav a:hover, nav a.active {
    color: #39ff14;
    text-shadow: 0 0 5px #39ff14;
}

/* CONTENEUR PRINCIPAL */
.page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    flex: 1;
}

/* TYPOGRAPHIE */
h1 {
    font-size: 36px;
    background: -webkit-linear-gradient(#fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}
h2 { color: #39ff14; font-size: 20px; margin-top: 40px; border-bottom: 1px solid #333; padding-bottom: 10px; }
p, li { color: #ccc; line-height: 1.6; font-size: 14px; }
strong { color: white; }

/* BOITES ET CARTES */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* DISCLAIMER MEDICAL (Important) */
.medical-warning {
    border: 1px solid #ff5252;
    background: rgba(255, 82, 82, 0.1);
    color: #ffcdd2;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 30px;
}

/* FORMULAIRES */
input, textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: inherit;
}
input:focus, textarea:focus { border-color: #39ff14; outline: none; }
button {
    background: linear-gradient(45deg, #1b5e20, #4caf50);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* FAQ ACCORDION */
details { background: #111; margin-bottom: 10px; border-radius: 5px; overflow: hidden; }
summary { padding: 15px; cursor: pointer; font-weight: bold; color: #eee; list-style: none; }
summary:hover { background: #222; color: #39ff14; }
details p { padding: 15px; margin: 0; background: #0a0a0a; color: #aaa; border-top: 1px solid #222; }

/* PIED DE PAGE */
footer {
    text-align: center;
    padding: 20px;
    font-size: 10px;
    color: #555;
    border-top: 1px solid #222;
    margin-top: 40px;
}
footer a { color: #777; text-decoration: none; }