/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fffdfd;
  color: #333;
  scroll-behavior: smooth;
  min-height: 100vh;
  padding-top: 100px;
  overflow-x: auto;
  word-break: break-word;
}

a {
  text-decoration: none;
}

/* ===== Header / Navbar ===== */
header {
  background: #fff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

nav ul li a {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f67bb1;
}

/* ===== Hero Section ===== */
.hero {
  background: url('images/hero2.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  text-align: center;
  position: relative;
}

.glass-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 80px 6vw;
  border-radius: 24px;
  color: #222;
  max-width: 1000px;
  animation: fadeInUp 1s ease-in;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(90deg, #d63384, #f9a825, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
  margin-bottom: 0;
  line-height: 1.2;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glass-box p {
  font-size: 20px;
  margin: 0 auto 12px;
  line-height: 1.8;
  max-width: 700px;
  color: #444;
}

/* ===== Buttons + Booking Icons ===== */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  padding: 16px 32px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
}

.btn img {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn:hover img {
  transform: scale(1.1);
}

.btn.primary {
  background: #f67bb1;
  color: white;
}

.btn.primary:hover {
  background: #e04896;
  transform: translateY(-2px);
}

.btn.secondary {
  background: white;
  color: #f67bb1;
  border: 2px solid #f67bb1;
}

.btn.secondary:hover {
  background: #fff4f8;
  transform: translateY(-2px);
}

/* ===== Section générale ===== */
.section {
  padding: 80px 5vw;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-in;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #d63384;
}

.section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ===== Contact + Review Box ===== */
.contact-review-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 60px 5vw;
}

.contact-form, .review-box {
  flex: 1 1 400px;
}

.contact-form h2,
.review-box h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Special buttons */
.btn.whatsapp { background-color: #25D366; color: white; }
.btn.message { background-color: #007AFF; color: white; }
.btn.call    { background-color: #34b7f1; color: white; }

/* ===== Reviews ===== */
.review {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
}

.review span {
  font-size: 14px;
  color: #777;
}

/* ===== Footer ===== */
footer {
  background: #fff;
  color: #888;
  text-align: center;
  padding: 28px 5vw;
  font-size: 15px;
  margin-top: 50px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
  max-width: 100vw;
  overflow: hidden;
}

/* ===== Accessibilité ===== */
.sr-only {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

  .hero {
    padding-top: 140px;
    padding-left: 20px;
    padding-right: 20px;
    background-position: center top;
  }

  .gradient-text {
    font-size: 34px;
  }

  .glass-box {
    padding: 50px 24px;
    gap: 20px;
  }

  .glass-box p {
    font-size: 18px;
  }

  .buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    font-size: 17px;
    justify-content: center;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section p {
    font-size: 16px;
  }

  .contact-review-box {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  .cta-wrapper {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.cta-pricing-btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #d63384, #f50057);
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(246, 123, 177, 0.3);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  animation: bounceIn 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-pricing-btn:hover {
  background: linear-gradient(135deg, #b71c5c, #ff0066);
  transform: scale(1.05);
}

/* Animation when visible */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
