
/* style.css — Réseau Souverain */

:root {
  --fond: #0a0a0a;
  --texte: #f5f5f5;
  --accent: #d2ffb2;
  --accent-light: #b2e69b;
}

body {
  margin: 0;
  padding: 2em;
  font-family: 'Segoe UI', sans-serif;
  background: var(--fond);
  color: var(--texte);
  line-height: 1.6;
}

header, main, footer {
  max-width: 800px;
  margin: auto;
}

h1, h2, h3 {
  color: var(--accent);
}

.quote {
  font-style: italic;
  margin: 1.5em 0;
  border-left: 4px solid var(--accent);
  padding-left: 1em;
  opacity: 0.9;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.section {
  margin-top: 3em;
}

input, textarea {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  border-radius: 4px;
  border: none;
  font-size: 1em;
}

button {
  background: var(--accent);
  color: var(--fond);
  border: none;
  padding: 0.7em 1.2em;
  margin-top: 1em;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

button:hover {
  background: var(--accent-light);
}

footer {
  margin-top: 4em;
  font-size: 0.9em;
  opacity: 0.7;
  text-align: center;
}
