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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* LAYOUT GÉNÉRAL */

.container {
  min-height: 100vh;
  background: linear-gradient(135deg, #EC4899 0%, #0E1A3B 50%, #EC4899 100%);
  color: white;
  overflow-x: hidden;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* HERO */

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin: -20px -20px 20px -20px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(14,26,59,1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #FACC15, #EC4899, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.3rem;
  color: #E5E7EB;
  margin-bottom: 30px;
}

/* BOUTONS */

.btn {
  background: linear-gradient(90deg, #EC4899, #3B82F6);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* FEATURE BOXES */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 0 0 40px;
  position: relative;
  padding: 40px 30px;
  border-radius: 20px;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #EC4899 0%, #BE185D 50%, #831843 100%);
  border-radius: 20px;
  z-index: -1;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* FEATURED VENUES SECTION */

.featured-section {
  margin: 60px -20px;
  background: #0E1A3B;
  padding: 60px 20px;
}

@media (min-width: 769px) {
  .featured-section {
    margin: 60px calc(-50vw + 50%);
    padding: 60px calc(50vw - 50%);
  }
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  color: #E5E7EB;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.featured-venues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.featured-venue-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.featured-venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(250,204,21,0.3);
  border-color: #FACC15;
}

.featured-venue-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-venue-content {
  padding: 25px;
}

.featured-venue-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FACC15;
}

.featured-venue-location {
  color: #E5E7EB;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.featured-venue-highlight {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.highlight-tag {
  background: rgba(59,130,246,0.2);
  border: 1px solid #3B82F6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ffffff;
}

.featured-venue-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.featured-watch-btn {
  background: rgba(255,255,255,0.1);
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
  flex: 1 1 auto;
  transition: all 0.2s;
}

.featured-watch-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.featured-book-btn {
  background: linear-gradient(135deg, #FACC15, #F59E0B);
  color: #0E1A3B;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  flex: 1 1 auto;
  box-shadow: 0 4px 15px rgba(250,204,21,0.4);
  transition: all 0.2s;
}

.featured-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(250,204,21,0.6);
}

.featured-venues-empty {
  text-align: center;
  color: #E5E7EB;
  padding: 40px 0;
}

/* QUIZ / QUESTIONS */

.progress-bar {
  background: rgba(255,255,255,0.2);
  height: 10px;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #EC4899, #3B82F6);
  height: 100%;
  transition: width 0.3s;
}

.question-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  margin: 20px 0;
}

.question {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option-btn {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: white;
  transition: all 0.2s;
}

.option-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #EC4899;
}

.option-emoji {
  font-size: 2.5rem;
}

.back-btn {
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 10px;
}

.back-btn:hover {
  color: white;
}

/* FORMULAIRE CONTACT */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 1rem;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0E1A3B;
  color: white;
}

/* CARDS RÉSULTATS */

.venue-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.match-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.best-match {
  background: linear-gradient(135deg, #FACC15, #EC4899);
  color: black;
}

.match {
  background: rgba(255,255,255,0.2);
}

.venue-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.venue-info {
  color: #E5E7EB;
  margin-bottom: 20px;
}

.venue-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FACC15;
  white-space: nowrap;
}

.price-label {
  font-size: 0.9rem;
  color: #9ca3af;
}

.book-btn {
  background: linear-gradient(135deg, #FACC15, #F59E0B);
  color: #0E1A3B;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  font-size: 1rem;
  text-align: center;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6);
}

.watch-video-btn {
  background: rgba(255,255,255,0.1);
  border: 2px solid white;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
}

.watch-video-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

/* CAROUSEL */

.carousel {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* ÉTATS / UTILS */

.error-message {
  background: rgba(239,68,68,0.2);
  border: 1px solid #ef4444;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.text-center {
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero {
    height: 600px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .question {
    font-size: 1.6rem;
  }

  .carousel {
    height: 200px;
  }

  .price {
    font-size: 1.2rem;
  }

  .venue-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-btn,
  .watch-video-btn {
    width: 100%;
    text-align: center;
  }
}
