/* site_web/assets/css/legal.css
   Shared stylesheet for the 3 legal / informational pages:
   mentions-legales.html, politique-de-confidentialite.html, plan-du-site.html */

/* ============ Page header (reusable pattern — copied verbatim from
   contact.css so this page's header renders identically) ============ */
.page-header {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: #000;
}
@media (min-width: 768px) {
  .page-header { padding-top: 12rem; padding-bottom: 7rem; }
}

.page-header__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.05);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.page-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .page-header__eyebrow { font-size: 0.875rem; } }

.page-header__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .page-header__title { font-size: 3.75rem; } }

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .page-header__subtitle { font-size: 1.125rem; } }

.page-header__rule {
  width: 12rem;
  height: 2px;
  margin: 2rem auto 0;
  background: var(--gold);
}

/* ============ Legal / sitemap content ============ */
.legal-section {
  position: relative;
  padding-block: 5rem;
  background: #000;
}
@media (min-width: 768px) { .legal-section { padding-block: 8rem; } }

.legal-section__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 640px) { .legal-section__inner { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .legal-section__inner { padding-inline: 2rem; } }

.legal-section__inner--sitemap { gap: 3rem; }

.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.legal-section__inner--sitemap h2 { margin-bottom: 1.5rem; }

.legal-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: justify;
}

/* ============ Sitemap links ============ */
.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sitemap-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-link__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.4);
  transition: background-color 0.3s;
  flex-shrink: 0;
}

.sitemap-link:hover { color: var(--gold); }
.sitemap-link:hover .sitemap-link__dot { background: var(--gold); }
