/* ============================================================
   MENTIONS.CSS — Styles spécifiques aux mentions légales
   ============================================================ */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: var(--on-surface);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  display: inline-block; line-height: 1; text-transform: none;
}
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* Nav */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(3, 22, 27, 0.80);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0px 4px 24px rgba(0, 131, 150, 0.10);
}
.nav__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem; max-width: 1280px; margin: 0 auto;
}
.nav__logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.4rem; letter-spacing: -0.03em; color: #ffffff;
}
.nav__logo-accent { color: var(--tertiary); white-space: nowrap; }
.nav__links { display: flex; gap: 2.5rem; align-items: center; }
.nav__link {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; color: #ffffff;
  transition: color 0.3s;
}
.nav__link:hover { color: var(--tertiary); }
.nav__cta {
  background: var(--tertiary); color: var(--on-primary);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-md);
  transition: background 0.3s;
}
.nav__cta:hover { background: var(--tertiary-container); }
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none !important; }
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--surface-variant);
  overflow: hidden;
  border-bottom: 2px solid #c8cbcc;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(var(--primary-rgb, 26, 86, 219), .12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(var(--tertiary-rgb, 212, 175, 55), .08) 0%, transparent 60%);
  z-index: 1;
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--on-surface);
  margin-bottom: 1rem;
}
.page-hero__title span { color: var(--primary); }
.page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--on-surface-variant);
  max-width: 640px;
  line-height: 1.7;
}

/* Legal content */
.legal { padding: 4rem 0 6rem; }
.legal h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.4rem; color: var(--primary); text-transform: uppercase;
  letter-spacing: -0.01em; margin: 3rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--tertiary);
}
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 1rem; color: var(--on-surface-variant); line-height: 1.75; }
.legal strong { color: var(--on-surface); font-weight: 700; }
.legal ul { margin: 0.5rem 0 1.5rem 1.5rem; }
.legal li { margin-bottom: 0.5rem; color: var(--on-surface-variant); line-height: 1.6; }
.legal a { color: var(--primary); text-decoration: underline; }
.legal a:hover { color: var(--tertiary); }

/* Footer */
.footer { background: #0a1e2e; padding: 4rem 2rem 0; }
.footer__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__col-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: white; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 1.2rem;
}
.footer__logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  font-size: 1.4rem; color: white; text-transform: uppercase;
  letter-spacing: -0.02em; display: block; margin-bottom: 1rem;
}
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s; letter-spacing: 0.02em;
}
.footer__link:hover { color: var(--tertiary); }
.footer__address {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.6; font-style: normal; margin-bottom: 1.2rem;
}
.footer__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--tertiary); color: white;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.85rem; padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md); transition: background 0.3s;
}
.footer__phone:hover { background: #d4a00f; }
.footer__phone .material-symbols-outlined { font-size: 1.1rem; }
.footer__bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.footer__copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); }
