/* Section Réservation */
.reservation-section {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(72, 61, 139, 0.1) 0%,
    rgba(238, 168, 255, 0.1) 100%
  );
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: rgb(238, 168, 255);
  text-shadow: 0 0 20px rgba(72, 61, 139, 0.6);
}

/* Encart de notice */
.reservation-notice {
  background: rgba(20, 20, 40, 0.8);
  border: 2px solid rgba(238, 168, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
  box-shadow: 0 10px 40px rgba(72, 61, 139, 0.4);
  backdrop-filter: blur(10px);
}

.notice-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.reservation-notice h3 {
  color: rgb(238, 168, 255);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(238, 168, 255, 0.5);
}

.reservation-notice p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

/* Boutons réseaux sociaux de réservation */
.social-booking-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.social-booking-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.social-booking-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.social-booking-btn:hover::before {
  width: 300px;
  height: 300px;
}

.social-booking-btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.social-booking-btn span {
  position: relative;
  z-index: 1;
}

/* Instagram booking */
.instagram-booking-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.instagram-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.5);
}

/* TikTok booking */
.tiktok-booking-btn {
  background: linear-gradient(45deg, #000000 0%, #00f2ea 50%, #ff0050 100%);
  color: white;
}

.tiktok-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 234, 0.5);
}

/* Info réponse */
.response-info {
  font-size: 0.95rem !important;
  color: rgb(255, 255, 255) !important;
  font-style: italic;
  margin-bottom: 0 !important;
  text-align: center !important;
}

/* Prix de la séance */
.reservation-notice .prix-seance {
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  color: rgba(255, 215, 0, 0.95);
  margin: 1.2rem 0 0.3rem;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  display: block;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.prix-label {
  display: block;
  font-size: 1rem;
  color: rgb(238, 168, 255);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Responsive - Tablette */
@media (max-width: 768px) {
  .reservation-section {
    padding: 60px 15px;
  }

  .reservation-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .reservation-notice {
    padding: 30px 25px;
    margin: 40px 20px 0;
  }

  .reservation-notice h3 {
    font-size: 1.5rem;
  }

  .social-booking-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .social-booking-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive - Smartphone */
@media (max-width: 480px) {
  .reservation-section {
    padding: 50px 10px;
  }

  .reservation-section h2 {
    font-size: 1.8rem;
  }

  .reservation-notice {
    padding: 25px 20px;
    border-radius: 15px;
    margin: 30px 15px 0;
  }

  .notice-icon {
    font-size: 2.5rem;
  }

  .reservation-notice h3 {
    font-size: 1.3rem;
  }

  .reservation-notice p {
    font-size: 1rem;
  }

  .social-booking-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
