:root {
  --primary: #e91e8f;
  --primary-dark: #b70f6b;
  --secondary: #ffd1e8;
  --light: #fff7fb;
  --white: #ffffff;
  --dark: #3a1630;
  --text: #5a4052;
  --shadow: 0 15px 40px rgba(233, 30, 143, 0.18);
  --radius: 18px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  max-width: calc(100% - 70px);
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.6);
  flex-shrink: 0;
}

.logo-script {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.9rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(58, 22, 48, 0.78), rgba(233, 30, 143, 0.35)),
    rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 90px;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: #ffd9ef;
}

.hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 650px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4aad);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* SECTIONS */
.intro-section,
.placeholder-section {
  padding: 100px 0;
}

.alt {
  background: #fff0f7;
}

.section-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.intro-text h2,
.placeholder-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}

.intro-text p,
.placeholder-section p {
  margin-bottom: 1rem;
}

.intro-card {
  position: relative;
  background: linear-gradient(160deg, #ffb6db, #f02897);
  color: var(--white);
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(60px);
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.intro-card h3 {
  position: relative;
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro-card p {
  position: relative;
  font-size: 1.1rem;
  margin: 0.35rem 0;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: #ffd9ef;
  padding: 1.4rem 0;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: #ffd9ef;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    width: 260px;
    background: rgba(73, 18, 56, 0.96);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    gap: 0.8rem;
  }

  .logo {
    max-width: calc(100% - 60px);
  }

  .logo-script {
    font-size: 1.6rem;
  }

  .logo-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.2rem 0;
  }

  .header-container {
    min-height: 68px;
  }

  .logo {
    gap: 0.45rem;
    max-width: calc(100% - 52px);
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-script {
    font-size: 1.3rem;
  }

  .logo-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    font-size: 1.6rem;
  }

  .main-nav {
    top: 68px;
    width: 220px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-text {
    font-size: 1rem;
  }
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 0.6rem;
    }
}

@media (max-width: 420px) {
  .logo-script {
    font-size: 1.15rem;
  }

  .logo-tagline {
    font-size: 0.46rem;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .logo {
    gap: 0.4rem;
  }
}


/*======================================================*/
/*                        Massage                       */
/*======================================================*/
.section-intro {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.massages-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 182, 219, 0.35), transparent 30%),
    linear-gradient(180deg, #fff7fb 0%, #fff0f7 100%);
}

.massages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.massage-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 30, 143, 0.12);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 14px 35px rgba(233, 30, 143, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.massage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(233, 30, 143, 0.14);
}

.massage-card-top h3 {
  color: var(--dark);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.massage-card-top p {
  margin-bottom: 1.3rem;
}

.massage-badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(233, 30, 143, 0.12);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.massage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(233, 30, 143, 0.12);
  border-bottom: 1px solid rgba(233, 30, 143, 0.12);
}

.massage-meta span {
  color: var(--text);
  font-weight: 500;
}

.massage-meta strong {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.massage-card .btn {
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .massages-grid {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .massage-card {
      padding: 1.3rem;
      border-radius: 20px;
    }
    
    .massage-card-top h3 {
      font-size: 1.2rem;
    }
    
    .massage-meta strong {
      font-size: 1.05rem;
    }  
}


/*=========================================*/
/*                Esthétique               */
/*=========================================*/
.beauty-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff0f7 0%, #fff7fb 100%);
}

.beauty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.beauty-block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 14px 35px rgba(233, 30, 143, 0.08);
  border: 1px solid rgba(233, 30, 143, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.beauty-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.beauty-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #ff76be);
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(233, 30, 143, 0.2);
  flex-shrink: 0;
}

.beauty-block-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.beauty-block-header p {
  margin: 0;
  color: var(--text);
}

.beauty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.beauty-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 209, 232, 0.28);
  border: 1px solid rgba(233, 30, 143, 0.08);
}

.beauty-list li span {
  color: var(--dark);
  font-weight: 500;
}

.beauty-list li strong {
  color: var(--primary-dark);
  font-size: 1rem;
  white-space: nowrap;
}

.beauty-block .btn {
  text-align: center;
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .beauty-grid {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .beauty-block {
      padding: 1.3rem;
      border-radius: 20px;
    }
    
    .beauty-block-header h3 {
      font-size: 1.25rem;
    }
    
    .beauty-icon {
      width: 46px;
      height: 46px;
      font-size: 1.1rem;
    }
    
    .beauty-list li {
      padding: 0.85rem 0.9rem;
      border-radius: 14px;
    }
}

/*==============================================*/
/*              Galerie photos                  */
/*==============================================*/
.gallery-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 182, 219, 0.28), transparent 28%),
    linear-gradient(180deg, #fff7fb 0%, #fff0f7 100%);
}

.gallery-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-tab {
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(233, 30, 143, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: linear-gradient(135deg, var(--primary), #ff4aad);
  color: var(--white);
  box-shadow: var(--shadow);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(233, 30, 143, 0.1);
  background: var(--white);
  aspect-ratio: 4 / 5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 14px 35px rgba(233, 30, 143, 0.08);
  border: 1px solid rgba(233, 30, 143, 0.12);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .gallery-card,
    .video-card {
      border-radius: 18px;
    }
    
    .gallery-tab {
      padding: 0.75rem 1.1rem;
      font-size: 0.95rem;
    }
}




