/* ========== LEGAL / CGV / PLAN DU SITE ========== */

/* Hero banner */
.legal-hero {
  background: var(--dark, #1a1a1a);
  padding: 64px 48px 52px;
  text-align: center;
}
.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 101, 34, 0.12);
  color: var(--orange, #F26522);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.legal-hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--orange, #F26522);
  border-radius: 50%;
}
.legal-hero h1 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.legal-hero p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content wrapper */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* Section blocks */
.legal-section {
  margin-bottom: 40px;
}
.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark, #1a1a1a);
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange, #F26522);
  display: inline-block;
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark, #1a1a1a);
  margin: 20px 0 8px;
}

.legal-section p {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  font-weight: 700;
  color: var(--dark, #1a1a1a);
}

.legal-section a {
  color: var(--orange, #F26522);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-section a:hover {
  color: #d85a1e;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.legal-section ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange, #F26522);
}

/* Info card (editeur, hébergeur, etc.) */
.legal-info-card {
  background: var(--gray, #F4F4F4);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.legal-info-card p {
  margin-bottom: 6px;
  font-size: 13.5px;
  line-height: 1.7;
}
.legal-info-card p:last-child {
  margin-bottom: 0;
}

/* ========== PLAN DU SITE ========== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sitemap-col h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark, #1a1a1a);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange, #F26522);
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-col ul li {
  margin-bottom: 6px;
}
.sitemap-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.sitemap-col ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sitemap-col ul li a:hover {
  color: var(--orange, #F26522);
}
.sitemap-col ul li a:hover::before {
  background: var(--orange, #F26522);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .legal-hero {
    padding: 48px 24px 40px;
  }
  .legal-hero h1 {
    font-size: 26px;
  }
  .legal-content {
    padding: 32px 20px 60px;
  }
  .legal-section h2 {
    font-size: 16px;
  }
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .legal-hero h1 {
    font-size: 22px;
  }
  .legal-hero p {
    font-size: 13px;
  }
  .legal-content {
    padding: 24px 16px 48px;
  }
}
