:root {
  --violet: #522e4c;
  --blanc: #ffffff;
  --sauge: #b0bbab;
  --violet-light: #6b3d64;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--blanc);
  color: var(--violet);
}

/* HERO */
.hero {
  background-color: var(--violet);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.hero img.logo {
  width: 260px;
  max-width: 70vw;
  margin-bottom: 36px;
}

.hero .baseline {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 12px;
}

.hero .baseline span {
  display: block;
}

.hero .divider {
  width: 50px;
  height: 1px;
  background: var(--sauge);
  margin: 28px auto;
  opacity: 0.6;
}

.hero .accroche {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--blanc);
  max-width: 620px;
  line-height: 1.3;
  margin-bottom: 0;
}

/* FORMATIONS */
.formations {
  background-color: var(--blanc);
  padding: 80px 20px;
}

.formations h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--violet);
  text-align: center;
  margin-bottom: 12px;
}

.formations .sous-titre {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 50px;
}

.formation-item {
  border-left: 3px solid var(--violet);
  padding: 14px 20px;
  margin-bottom: 16px;
  background: #faf9fb;
  transition: background 0.2s;
}

.formation-item:hover {
  background: #f2eef1;
}

.formation-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--violet);
  line-height: 1.5;
}

.formation-item p strong {
  font-weight: 500;
}

.mention {
  text-align: center;
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--violet-light);
}

/* CONTACT */
.contact {
  background-color: var(--violet);
  padding: 70px 20px;
  text-align: center;
}

.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--blanc);
  margin-bottom: 8px;
}

.contact .divider {
  width: 40px;
  height: 1px;
  background: var(--sauge);
  margin: 20px auto;
  opacity: 0.5;
}

.contact a {
  display: inline;
  color: var(--blanc);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 6px 0;
  transition: color 0.2s;
}
.contact .tel-ligne {
  color: var(--blanc);
  font-size: 1rem;
  margin: 0;
}
.contact a:hover {
  color: var(--sauge);
}

.contact .coordonnees {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sauge);
  margin: 0;
}

/* FOOTER */
footer {
  background: #3a1f35;
  text-align: center;
  padding: 18px;
  font-size: 0.75rem;
  color: var(--sauge);
  letter-spacing: 0.08em;
}
.scroll-down {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--sauge);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce 2.4s ease-in-out infinite;
  text-decoration: none;
  position: absolute;
  bottom: 80px;
  flex-shrink: 0;
}

.scroll-down svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
