/* ================================
           Mentions légales
   ================================ */

body {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
}
/* Navbar */
.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar .nav-link {
  color: black;
  font-weight: bold;
}
.navbar-logo {
  height: 100%;
  max-height: 3rem;
  object-fit: contain;
}
/* Header */
header {
  text-align: center;
  padding: 70px 20px 50px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

header h1::after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background: #000;
  margin: 18px auto 0;
}

header p {
  margin: 20px 0 0;
  font-size: 0.95rem;
  color: #666;
  font-weight: 300;
}

/* Main */
main {
  max-width: 880px;
  margin: 70px auto;
  padding: 0 25px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

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

section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section p {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

/* Style des labels importants (Nom, Adresse...) */
section p strong {
  font-weight: 600;
  color: #000;
}

/* Links 
a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/*a:hover {
  border-bottom: 1px solid #000;
  color: #111;
}
*/