:root {
  --bg-body: #f7f4f1;
  --bg-header: #ffffff;
  --bg-section: #ffffff;
  --accent:#a8622a;
  --accent-soft: rgba(212, 163, 115, 0.1);
  --text-main: #1f2933;
  --text-muted: #4b5563;
  --border-subtle: rgba(209, 213, 219, 0.9);
  --max-width: 1100px;
  --header-height: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#accueil,
#bio,
#contact,
#faq,
#partenaire,
#services {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER / NAVIGATION */

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Liens de navigation */

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  align-items: center;
}

.nav__links a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav__links a:hover {
  color: var(--text-main);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Bouton "RDV en ligne" */

.nav__cta {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(212, 162, 115, 0.45);
}

.nav__cta::after {
  display: none; /* pas de barre sous le bouton */
}

.nav__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Responsive header */

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 1rem;
  }

  .nav__links {
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  /* on met le bouton RDV en premier sur mobile pour le mettre en avant */
  .nav__cta {
    order: -1;
  }
}

/* LAYOUT GLOBAL */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 1rem;
}

.section {
  background: var(--bg-section);
  border-radius: 1.25rem;
  padding: 2.25rem 1.8rem;
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.18);
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-height) + 100px);
}

.section__heading {
  margin-bottom: 1.8rem;
}

.section__title {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HERO (ACCUEIL) */

#accueil .hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  #accueil .hero {
    grid-template-columns: 1.35fr 1fr;
  }
}

.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero__title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.hero__title span {
  color: var(--accent);
}

.hero__text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* BOUTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: var(--border-subtle);
  background: #fff;
  color: var(--text-muted);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* RÉSEAUX SOCIAUX */

.hero__socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 0.4rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  background: #fff;
  transition: border-color 0.15s, transform 0.15s;
}

.social-link--fb {
  color: #2563eb;
}

.social-link--ig {
  color: #c026d3;
}

.social-link:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* HERO CARD (POURQUOI CHOISIR L'ÉPILATION LASER ?) */

.hero__card {
  border-radius: 1.2rem;
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.3rem;
  background: linear-gradient(135deg, #fffaf6, #fff);
  font-size: 0.95rem;
}

.hero__card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #000;
}

.hero__card ul {
  margin-top: 0.6rem;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.hero__card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.35rem;
}

/* SERVICES / TARIFS */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: flex-start;
}

.service-content {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-grid .card {
  flex: 1 1 260px;
  max-width: 340px;
  cursor: pointer;
}

.services-grid .card:hover {
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.25);
  transform: translateY(-2px);
}

.service-summary {
  font-weight: 700;
  color: inherit;
}

@media (min-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}

.tarifs-table td {
  padding: 0.15rem 0;
}

.tarifs-table td:first-child {
  width: 70%;
  padding-right: 2.5rem;
}

.tarifs-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* CARDS GÉNÉRALES */

.card {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  background: #fff;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.3);
}

.card__title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* BIO */

#bio .bio-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 860px) {
  #bio .bio-layout {
    grid-template-columns: 1.1fr 1fr;
  }
}

.bio-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.9rem;
}

.bio-photo {
  border-radius: 1.1rem;
  border: 1px dashed var(--accent-soft);
  overflow: hidden;
}

.bio-photo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-photo__note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: #fff;
  padding: 0.8rem 1rem;
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-moz-list-bullet {
  list-style-type: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--accent);
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  content: "−";
}

.faq-a {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PARTENAIRE (PLANITY) */

.partner {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.18);
  max-width: 700px;
 border: 1px solid var(--border-subtle);
}

.partner__content p {
  margin-bottom: 0.8rem;
}

.partner__content ul {
  padding-left: 1.1rem;
  margin-bottom: 1.4rem;
}

.partner__content li {
  margin-bottom: 0.2rem;
}

.partner__btn {
  margin-top: 0.4rem;
}

/* CONTACT */

#contact .contact-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 860px) {
  #contact .contact-layout {
    grid-template-columns: 1.05fr 1.1fr;
    align-items: start;
  }
}

.contact-info {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.8rem;
}

.contact-info strong {
  color: var(--text-main);
}

.contact-info__block {
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1rem;
  background: #fff;
  font-size: 0.9rem;
}

.contact-info__social-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info__social-links {
  margin-top: 0.4rem;
}
.contact-info iframe {
  width: 100%;
  max-width: 100%;
  height: 280px;
  border-radius: 0.9rem;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 1.8rem 1rem 2.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
