/*
  legal.css – Styles pour les pages "Mentions légales" et "Politique de confidentialité".
  Simplifie la mise en page tout en conservant la palette de couleurs du site.
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #FFD5A3;
  color: #222;
  line-height: 1.7;
}

a {
  color: #b58b67;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.legal-header {
  background: rgba(248, 244, 240, 0.95);
  border-bottom: 1px solid #e2d9cf;
  backdrop-filter: blur(6px);
}

.legal-header__inner,
.legal-main,
.legal-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.legal-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c1810;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.legal-main {
  padding: 48px 24px 72px;
  display: grid;
  gap: 42px;
}

.legal-main h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.4rem);
  color: #2c1810;
}

.legal-intro {
  font-size: 1.05rem;
  color: #333;
}

.legal-section {
  background: rgba(248, 244, 240, 0.65);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #2c1810;
}

.legal-section h3 {
  font-size: 1.15rem;
  margin: 22px 0 10px;
}

.legal-placeholder {
  font-weight: 600;
  color: #7a5333;
}

ul.legal-list {
  padding-left: 20px;
  margin: 14px 0;
}

.legal-footer {
  padding: 24px 24px 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #3b2a20;
}

@media (max-width: 640px) {
  .legal-section {
    padding: 22px;
  }
}
