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

/* Main prend tout l'espace restant */
main {
  flex: 1;
}

/* Assurez-vous que html et body prennent toute la hauteur */
html, body {
  min-height: 100vh;
  margin: 0;
}

/* Crée un conteneur global */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px; /* Espace pour le footer */
}

/* =========================================================
   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)
   ========================================================= */

/* Footer reste en bas naturellement */
.site-footer {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  background: transparent !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* =========================================================
   FAQ – Contenu de la page FAQ
   ========================================================= */
.faq-container {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

.faq-container h1 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  text-align: center;
  color: #c9a24d;
  margin-bottom: 60px;
}

.faq-item {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.faq-item h2 {
  margin-top: 0;
  color: #e5e5e5;
}

.faq-item p {
  line-height: 1.7;
  color: #cfcfcf;
}

/* =========================================================
   FAQ – SCRIPT QUESTION/REPONSE
   ========================================================= */

.faq-question {
  width: 100%;
  background: #121212;
  color: #c9a24d;
  font-size: 16px;
  text-align: left;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 5px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #1a1a1a;
  padding: 0 15px;
  border-radius: 0 0 8px 8px;
  color: #cfcfcf;
  line-height: 1.6;
}

.faq-question::after {
  content: "+";
  float: right;
  font-weight: bold;
}

.faq-question.active::after {
  content: "−";
}
