@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* BODY */
body {
  font-family: "Inter", sans-serif;
  color: #222;
}

/* ================= HEADER ================= */
/* HEADER */
.header {
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 25px;
  background: #fff;
  z-index: 2000;
}

/* LOGO */
.logo img {
  height: 80px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* NAV DESKTOP */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
}
a:hover {
  color: #b889ff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #6cc6b8;
  border-radius: 2px;
  transition: 0.3s;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    transition: right 0.3s ease;
    z-index: 2050;
  }

  .nav.active {
    display: flex;
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 2100;
  }
}

/* ================= HAMBURGER ANIMATION ================= */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= FIX HERO ================= */
.hero {
  padding-top: 120px; /* évite que le texte soit coupé */
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  background-image: url("beauty.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px;
}

/* OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

/* TEXTE */
.subtitle {
  font-family: cursive;
  color: #999;
  font-size: 18px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 600;
  margin: 15px 0;
}

.hero-content p {
  color: #777;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BOUTON */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #b8a6ff, #f7a7d7);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Tablette */
@media (max-width: 1024px) {
  .hero {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 44px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    padding: 40px 20px;
    background-position: top;
    justify-content: center;
  }

  .hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

/* SERVICES SECTION */
.services {
  padding: 100px 80px;
  background: #fff;
  text-align: center;
}

/* HEADER */
.services-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-subtitle {
  display: block;
  font-family: cursive;
  color: #b8a6ff;
  font-size: 18px;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-header p {
  color: #777;
  font-size: 16px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.service-card img:hover {
  transform: translateY(-8px) scale(1.03);
}

.service-card h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 60px 20px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.why-choose-us {
  background: #f9f9fb;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.image-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-box {
  max-width: 550px;
}

.subtitle {
  color: #b889ff;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-box h2 {
  font-size: 40px;
  margin: 10px 0 20px;
}

.content-box h3 {
  margin-bottom: 15px;
}

.content-box ul {
  list-style: none;
  padding: 0;
}

.content-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 24px;
  color: #b889ff;
}

.stats span {
  display: block;
  font-size: 14px;
}

button {
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #b889ff, #ffb6c1);
  color: white;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pricing {
  padding: 80px 20px;
  text-align: center;
  background: #fafafa;
}

.subtitle {
  color: #b889ff;
  font-weight: 600;
}

.pricing h2 {
  font-size: 40px;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 260px;
  border-radius: 140px 140px 30px 30px;
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card-img {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #eee;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin-top: 20px;
}

.price {
  color: #b889ff;
  font-size: 22px;
  margin: 10px 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.card button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #b889ff, #ffb6c1);
  color: white;
  cursor: pointer;
}

/* cartes violettes */
.card.active {
  background: linear-gradient(180deg, #b889ff, #ffb6c1);
  color: white;
}

.card.active .price,
.card.active ul li {
  color: white;
}

.card.active button {
  background: white;
  color: #b889ff;
}

.footer {
  background: #fafafa;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.logo {
  font-family: cursive;
  font-size: 32px;
}

.footer-box p {
  font-size: 14px;
  margin: 8px 0;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, #b889ff, #ffb6c1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-box h3 {
  margin-bottom: 15px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter input {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  flex: 1;
}

.newsletter button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(45deg, #b889ff, #ffb6c1);
  color: white;
  cursor: pointer;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .newsletter {
    flex-direction: column;
  }
}
.booking-luxury {
  padding: 100px 20px;
  background: linear-gradient(180deg, #faf6ff, #fff);
}

.booking-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.booking-info {
  max-width: 480px;
}

.booking-info h2 {
  font-size: 42px;
  margin: 15px 0;
}

.booking-info p {
  color: #666;
  margin-bottom: 25px;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.booking-card {
  background: white;
  padding: 50px;
  border-radius: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 40px 80px rgba(184, 137, 255, 0.2);
}

.field,
.field-group {
  margin-bottom: 20px;
}

.field-group {
  display: flex;
  gap: 15px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 30px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  background: #fafafa;
}

.booking-card textarea {
  border-radius: 25px;
  resize: none;
  min-height: 120px;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: #b889ff;
  background: white;
}

.booking-card button {
  width: 100%;
  margin-top: 25px;
  padding: 18px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(45deg, #b889ff, #ffb6c1);
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-card button:hover {
  box-shadow: 0 15px 30px rgba(184, 137, 255, 0.4);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .booking-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .booking-info {
    max-width: 100%;
  }

  .field-group {
    flex-direction: column;
  }
}
/* === FORCE HEADER EN LIGNE (FIX MOBILE) === */
.header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
