/* =========================================================
   GLOBAL – Styles généraux (fond, texte, police)
   ========================================================= */
body {
  margin: 0;
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
}

.faq-item p {
  font-weight: 600;        /* effet gras élégant */
  color: #f0f0f0;          /* plus blanc mais pas agressif */
  line-height: 1.8;        /* meilleure lecture */
  margin-bottom: 22px;
}


/* =========================================================
   HEADER / MENU – Logo + navigation principale
   ========================================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}

.logo {
  font-family: 'Cinzel', serif;
  color: #c9a24d;
  margin: 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #e5e5e5;
}

nav a:hover {
  color: #c9a24d;
}

/* =========================================================
   FOOTER – Pied de page (identique à l’accueil)
   ========================================================= */
.site-footer {
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  color: #fff;
  background: transparent !important;
  width: 100% !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* =========================================================
   UNIVERS – Contenu spécifique à la page L’Univers
   ========================================================= */
.faq-container {
  max-width: 700px;       /* largeur plus restreinte comme FAQ */
  margin: 80px auto;      /* centré avec un peu de marge en haut */
  padding: 0 20px;
  text-align: center;     /* texte centré comme FAQ */
}

.faq-container h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;        /* titre un peu plus petit */
  color: #c9a24d;
  margin-bottom: 50px;
}

.faq-item {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 25px 20px;    /* moins large que FAQ pour aérer */
  margin-bottom: 25px;
}

.faq-item h2 {
  margin-top: 0;
  color: #e5e5e5;
  font-size: 20px;
}

.faq-item p {
  line-height: 1.7;
  color: #cfcfcf;
  font-size: 15px;       /* texte plus lisible et uniforme */
}
