:root {
  --rose: #C4175A;
  --rose-fonce: #9E1048;
  --rose-clair: #FAFAFA;
  --rose-pale: #fbeaf0;
  --creme: #FAFAFA;
  --blanc: #ffffff;
  --gris-texte: #3a3a3a;
  --gris-doux: #7a7a7a;
}

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

body {
  font-family: 'Raleway', sans-serif;
  color: var(--gris-texte);
  background: var(--blanc);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196,23,90,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 5%;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-texte);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: white;
  padding: 14px 38px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--rose-fonce);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  padding: 13px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--rose);
  color: white;
}

/* PAGE CONTENT */
.page-content {
  padding-top: 68px;
}

/* PAGE HERO (pour pages intérieures) */
.page-hero {
  background: var(--rose-pale);
  padding: 5rem 10%;
  text-align: center;
  border-bottom: 1px solid rgba(196,23,90,0.1);
}

.page-hero .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  color: var(--gris-texte);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gris-doux);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* SECTION BASE */
section {
  padding: 6rem 10%;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.separateur {
  width: 50px;
  height: 2px;
  background: var(--rose);
  margin: 1.2rem 0 2rem;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

footer a { color: var(--rose); text-decoration: none; }

/* CONTACT SECTION */
.contact {
  background: var(--gris-texte);
  color: white;
  text-align: center;
}

.contact .section-title { color: white; }
.contact .section-label { color: rgba(196,23,90,0.9); }

.contact-texte {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.contact-infos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.contact-item strong {
  display: block;
  color: var(--rose);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  section { padding: 4rem 7%; }
  .page-hero { padding: 4rem 7%; }
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid rgba(196,23,90,0.12);
  flex-direction: column;
  padding: 1.5rem 5%;
  gap: 1.2rem;
  z-index: 99;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-texte);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196,23,90,0.08);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--rose); }
.nav-mobile .btn-primary {
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  nav { justify-content: space-between; }
}


/* FORMAT TELEPHONE */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  nav {
    padding: 0 1.2rem;
  }

  section,
  .page-hero {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }

  .section-title,
  .page-hero h1 {
    line-height: 1.15;
    word-break: normal;
  }

  p,
  li {
    font-size: 1rem;
    line-height: 1.8;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-infos {
    gap: 1.5rem;
  }

  iframe,
  video {
    max-width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}
