/* Reprise des variables de index.html */
:root {
  --navy: #12213d;
  --gold: #b8923a;
  --cream: #f6f1e9;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-soft: #6b6b82;
}

body {
  font-family: 'Playfair Display', serif; /* Ou votre police par défaut */
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

#navbar {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
}

.nav-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.back-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.back-link:hover { opacity: 1; }

.legal-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gold-text { color: var(--gold); }

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto;
}

h2 {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
}

h3 {
  color: var(--gold);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-soft);
  text-align: justify;
}

.legal-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  background: var(--navy);
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 600px) {
  .legal-content { margin: 2rem auto; }
}