/* ================================
   VARIABLES & RESET
================================ */
:root {
  --noir: #0A0A0A;
  --or: #C9A96E;
  --rose: #F2D4D7;
  --blanc: #FAF8F5;
  --font-titre: 'Cormorant Garamond', serif;
  --font-corps: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--noir);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-weight: 300;
}

/* ================================
   NAVIGATION
================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: #0A0A0A;
}

.nav-logo img {
  height: 85px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--blanc);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--or);
}

/* ================================
   HERO
================================ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: var(--blanc);
}

.hero h1 em {
  font-style: italic;
  color: var(--or);
}

.hero-sub {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  margin-top: -1rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--blanc);
  border: 1px solid var(--or);
  padding: 0.9rem 2.5rem;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn:hover {
  background-color: var(--or);
  color: var(--noir);
}

/* ================================
   SOINS
================================ */
.soins {
  padding: 8rem 4rem;
  background-color: var(--noir);
}

.soins-header {
  text-align: center;
  margin-bottom: 4rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.soins-header h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
}

.soins-header h2 em {
  font-style: italic;
  color: var(--or);
}

.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.soin-card {
  background: #111;
  overflow: hidden;
}

.soin-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.soin-card:hover .soin-img {
  transform: scale(1.03);
}

.soin-body {
  padding: 2rem;
}

.soin-body h3 {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.soin-body p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.btn-soin {
  text-decoration: none;
  color: var(--or);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--or);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.btn-soin:hover {
  opacity: 0.6;
}

/* ================================
   PAGES SOINS — HERO
================================ */
.hero-laser {
  background-image: url('images/epilation-laser-2.png');
}

.hero-nailart {
  background-image: url('images/nail-art.png');
}

/* ================================
   TECHNOLOGIE / INTRO
================================ */
.laser-tech {
  padding: 8rem 4rem;
  background-color: var(--noir);
}

.laser-tech-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.laser-tech-inner h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 2rem;
}

.laser-tech-inner h2 em {
  font-style: italic;
  color: var(--or);
}

.laser-intro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #aaa;
  margin-bottom: 4rem;
}

.laser-atouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: left;
}

.atout-num {
  font-family: var(--font-titre);
  font-size: 2.5rem;
  color: var(--or);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.atout h4 {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 0.75rem;
}

.atout p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #aaa;
}

/* ================================
   TARIFS
================================ */
.laser-tarifs {
  padding: 8rem 4rem;
  background-color: #0d0d0d;
}

.tarifs-inner {
  max-width: 800px;
  margin: 0 auto;
}

.tarifs-inner h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 4rem;
}

.tarifs-inner h2 em {
  font-style: italic;
  color: var(--or);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tarif-card {
  background: #111;
  padding: 2rem;
  border: 1px solid #1e1e1e;
  transition: border-color 0.3s, transform 0.3s;
}

.tarif-card:hover {
  border-color: var(--or);
  transform: translateY(-4px);
}

.tarif-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}

.tarif-card-header h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blanc);
}

.tarif-prix {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  color: var(--or);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.tarif-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tarif-card ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #aaa;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #1a1a1a;
  gap: 1rem;
}

.tarif-card ul li span:last-child {
  color: var(--blanc);
  white-space: nowrap;
}

.tarifs-cta {
  text-align: center;
  padding-top: 4rem;
  border-top: 1px solid #222;
  margin-top: 2rem;
}

.tarifs-cta p {
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 2rem;
}

.tarifs-cta p em {
  font-style: italic;
  color: var(--or);
}
/* ================================
   PAGE SOINS
================================ */
.hero-soins {
  background-image: url('images/Soins-cils.png');
}

.soins-intro {
  padding: 8rem 4rem;
  background-color: var(--noir);
}

.soins-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.soins-intro-inner h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 2rem;
}

.soins-intro-inner h2 em {
  font-style: italic;
  color: var(--or);
}

.soins-intro-inner p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #aaa;
}

.soin-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.soin-detail--reverse {
  direction: rtl;
}

.soin-detail--reverse > * {
  direction: ltr;
}

.soin-detail-img {
  background-size: cover;
  background-position: center;
}

.soin-detail-body {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background-color: #0d0d0d;
}

.soin-detail-body h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.1;
}

.soin-detail-body h2 em {
  font-style: italic;
  color: var(--or);
}

.soin-detail-body p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #aaa;
}

.soin-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.soin-points li {
  font-size: 0.85rem;
  color: var(--blanc);
  padding-left: 1.2rem;
  position: relative;
}

.soin-points li::before {
  content: '—';
  color: var(--or);
  position: absolute;
  left: 0;
}

.soins-cta {
  padding: 8rem 4rem;
  text-align: center;
  background-color: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.soins-cta h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
}

.soins-cta h2 em {
  font-style: italic;
  color: var(--or);
}

.soins-cta p {
  font-size: 0.9rem;
  color: #aaa;
  max-width: 500px;
}
.hero-cils {
  background-image: url('images/Soins-cils.png');
}
/* ================================
   FOOTER
================================ */
footer {
  background-color: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 5rem 4rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
}

.footer-col h4 {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li {
  font-size: 0.85rem;
  color: #666;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--or);
}

.footer-insta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-insta:hover {
  color: var(--or);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.1em;
}
/* ================================
   PAGE CONTACT
================================ */
.hero-contact {
  background-image: url('images/Contact - Diilenda.png');
}

.contact-section {
  padding: 8rem 4rem;
  background-color: var(--noir);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--or);
}

.contact-bloc {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1a1a1a;
}

.contact-bloc h4 {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}

.contact-bloc p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.contact-bloc .btn {
  display: inline-block;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #aaa;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.contact-social:hover {
  color: var(--or);
}

.contact-map {
  height: 550px;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  filter: grayscale(100%) invert(90%);
}
/* ================================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  /* HERO */
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  /* SOINS GRID */
  .soins {
    padding: 5rem 1.5rem;
  }

  .soins-grid {
    grid-template-columns: 1fr;
  }

  /* PAGES SOINS */
  .laser-tech {
    padding: 5rem 1.5rem;
  }

  .laser-atouts {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .laser-tarifs {
    padding: 5rem 1.5rem;
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  /* PAGE SOINS DETAIL */
  .soin-detail {
    grid-template-columns: 1fr;
  }

  .soin-detail--reverse {
    direction: ltr;
  }

  .soin-detail-img {
    height: 300px;
  }

  .soin-detail-body {
    padding: 3rem 1.5rem;
  }

  /* CONTACT */
  .contact-section {
    padding: 5rem 1.5rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-map {
    height: 300px;
  }

  /* FOOTER */
  footer {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* INTRO SOINS */
  .soins-intro {
    padding: 5rem 1.5rem;
  }

  .soins-cta {
    padding: 5rem 1.5rem;
  }
}
.nav-logo-text {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--or);
  letter-spacing: 0.1em;
}
/* ================================
   HAMBURGER MENU
================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 200;
}

.nav-burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blanc);
  transition: all 0.3s;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0A0A0A;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 150;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}