/* Page Mentions Légales */

.legal-page {
  min-height: calc(100vh - 70px);
  padding-top: 70px;
}

.legal-hero {
  background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
  padding: 80px 2rem 60px;
  text-align: center;
  border-bottom: 4px solid #FFD300;
}

.legal-hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: #FFD300;
  margin-bottom: 1rem;
}

.legal-intro {
  color: #C0C0C0;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-content {
  background: #1E1E1E;
  padding: 60px 2rem;
}

.legal-content .sc {
  max-width: 900px;
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 211, 0, 0.2);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #FFD300;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #FFD300;
}

.legal-section h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #FAFAFA;
  margin: 2rem 0 1rem;
}

.legal-section h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #FFD300;
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  color: #C0C0C0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal-section ul li {
  color: #C0C0C0;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.legal-section ul li::before {
  content: '▸';
  color: #FFD300;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.legal-section a {
  color: #FFD300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #E6BE00;
  text-decoration: underline;
}

.info-block {
  background: #2A2A2A;
  border-left: 4px solid #FFD300;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.info-block p {
  margin-bottom: 0.5rem;
  color: #FAFAFA;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block strong {
  color: #FFD300;
  font-weight: 600;
}

.contact-final {
  text-align: center;
  border-left: none;
  border: 2px solid #FFD300;
  background: linear-gradient(135deg, #2A2A2A 0%, #1E1E1E 100%);
}

.legal-footer {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 211, 0, 0.2);
}

.legal-footer p {
  color: #808080;
  font-size: 0.9rem;
  font-style: italic;
}

.back-home {
  background: #2A2A2A;
  padding: 40px 2rem;
  text-align: center;
}

.back-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.back-home .btn svg {
  width: 20px;
  height: 20px;
}

.back-home .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-hero {
    padding: 60px 1.5rem 40px;
  }

  .legal-hero h1 {
    font-size: 2.5rem;
  }

  .legal-intro {
    font-size: 1rem;
  }

  .legal-content {
    padding: 40px 1.5rem;
  }

  .legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .legal-section h2 {
    font-size: 1.75rem;
  }

  .legal-section h3 {
    font-size: 1.3rem;
  }

  .info-block {
    padding: 1rem;
  }

  .back-home {
    padding: 30px 1.5rem;
  }
}

/* Accessibilité - Focus */
.legal-section a:focus {
  outline: 2px solid #FFD300;
  outline-offset: 2px;
}

/* Impression */
@media print {
  .legal-page {
    padding-top: 0;
  }

  header,
  footer,
  .back-home {
    display: none;
  }

  .legal-hero {
    background: white;
    color: black;
    border-bottom-color: black;
  }

  .legal-hero h1 {
    color: black;
  }

  .legal-content {
    background: white;
  }

  .legal-section h2,
  .legal-section h3,
  .legal-section h4,
  .legal-section p,
  .legal-section li {
    color: black;
  }

  .info-block {
    background: #f5f5f5;
    border-left-color: black;
  }
}
