/* ================== RESET & BASE ================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
}
img {
  max-width: 100%;
  display: block;
}

/* Animation fadeIn */
@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-in-section {
  animation: fadeIn 1s ease forwards;
}

/* ================== NAVBAR ================== */
.navbar {
  background: #ff69b4;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  height: 60px;
}
.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 45px;
  object-fit: cover;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #ffefef;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* ================== HERO ================== */
.hero-section {
  margin-top: 60px;
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1500917293891-ef795e70e1f6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1600')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 1300px;
  border-radius: 10px;
  margin: 0 20px;
  padding: 40px;
}
.hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.hours-box {
  background: rgba(50, 50, 50, 0.65); /* Gris semi-transparent */
  border-radius: 8px;
  padding: 15px;
  min-width: 220px;
  text-align: left;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.open-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}
.status-text {
  font-weight: bold;
  font-size: 0.9rem;
}
.schedule-container {
  font-size: 0.9rem;
}
.schedule-container .hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.schedule-container .hours-list li {
  margin: 3px 0;
  display: flex;
  justify-content: space-between;
}
.schedule-container .hours-list li strong {
  margin-right: 5px;
  font-weight: bold;
}
.hero-welcome {
  max-width: 500px;
  text-align: center;
}
.hero-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}
.hero-subtitle {
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.4;
}
.btn-hero {
  background-color: #ff69b4;
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: inline-block;
}
.btn-hero:hover {
  background-color: #ff3c7d;
}

/* ================== Section Titles ================== */
.section-title {
  font-size: 2rem;
  margin: 40px 0 30px 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================== PHOTOS SALON ================== */
.photos-salon {
  padding: 50px;
  background: #fff;
}
.photos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.photo-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ================== VAGUES ================== */
.wave-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  background: transparent;
}
.wave-animate {
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s ease;
  will-change: clip-path;
}
.wave-separator.visible .wave-animate {
  clip-path: inset(0 0 0 0);
}
/* On masque depuis la droite pour .wave-right */
.wave-animate.wave-right {
  clip-path: inset(0 0 0 100%);
}
.wave-separator.visible .wave-animate.wave-right {
  clip-path: inset(0 0 0 0);
}

/* ================== PRESTATIONS ================== */
.services {
  padding: 50px;
  background: #fff;
}
.service-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.service-item {
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-radius: 10px;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: scale(1.03);
}
.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.service-item h3 {
  margin-top: 15px;
  font-size: 1.2rem;
}
.service-item p {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.4;
}
.service-item.active p {
  display: block;
}

/* ================== DOUBLE SECTION (Avant/Après + Facebook) ================== */
.double-grid {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fafafa;
  max-width: 1200px;
  margin: 0 auto;
}
.left-col, .right-col {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.left-col h2, .right-col h2 {
  margin-top: 0;
}

/* ================== CARROUSEL ================== */
.carousel-container {
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  height: 450px;
  max-width: 100%;
}
.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-images {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.carousel-images img {
  flex: 0 0 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: #f0f0f0;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.3s;
}
.carousel-button:hover {
  background: rgba(0, 0, 0, 0.6);
}
.carousel-button.left {
  left: 10px;
}
.carousel-button.right {
  right: 10px;
}

/* ================== PRODUITS ================== */
.produits {
  padding: 50px;
  background: #fafafa;
}
.produits-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.produit-item {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 280px;
  transition: transform 0.3s;
}
.produit-item:hover {
  transform: scale(1.03);
}
.produit-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.produit-info {
  padding: 15px;
  text-align: left;
}
.produit-info h3 {
  margin-bottom: 8px;
}
.produit-info p {
  line-height: 1.4;
  color: #555;
}

/* ================== QR Codes ================== */
.qr-section {
  padding: 50px;
  background: #fff;
}
.qr-container {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.qr-item {
  text-align: center;
}
.qr-item img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}
.qr-item p {
  font-size: 0.95rem;
  color: #555;
}

/* ================== FACEBOOK ================== */
.facebook-embed {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.facebook-embed iframe {
  max-width: 100%;
}

/* ================== CONTACT ================== */
.contact {
  padding: 50px;
  background: #ffeff5;
}
.contact p {
  margin-bottom: 15px;
}

/* ================== BOUTONS ================== */
.btn {
  background-color: #ff69b4;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  font-weight: bold;
  display: inline-block;
}
.btn:hover {
  background-color: #ff3c7d;
}
.fancy-btn {
  background: linear-gradient(45deg, #ff69b4, #ff3c7d);
  transition: transform 0.3s ease, background 0.3s ease;
}
.fancy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(45deg, #ff3c7d, #ff69b4);
}

/* ================== FOOTER ================== */
.footer-simple {
  background: #ff69b4;
  color: white;
  padding: 40px 0;
  margin-top: 40px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.footer-socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
  .double-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .hours-box {
    order: 1;
    width: 90%;
  }
  .hero-welcome {
    order: 2;
    width: 90%;
  }
  .hero-title {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-hero {
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* Menu mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #ff69b4;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links li a {
    font-size: 1.2rem;
  }
  .carousel-container {
    height: 300px;
  }
}
