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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #e8ecef;
  position: relative;
  overflow-x: hidden;
}

body.webp {
  background: url("../public/background.webp") no-repeat center center fixed;
  background-size: cover;
}

body.webp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 420px;
  padding: 25px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.4);
}

/* Titres */
h1 {
  font-size: 1.6em;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

h2.section-title {
  /* bleu -> vert WhatsApp clair */
  color: rgba(37, 211, 102, 0.85);
  margin-bottom: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  /* orange -> jaune-orangé léger translucide */
  color: rgba(255, 180, 80, 0.85);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

.highlight {
  margin-bottom: 40px;
  margin-top: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Paragraphes */
p {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Liens hypertextes */
a,
a:visited {
  color: rgba(37, 211, 102, 0.85); /* vert WhatsApp clair translucide */
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgba(37, 211, 102, 1);
  text-decoration: underline;
}

/* Boutons */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 4px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 25px;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Couleurs spécifiques (inchangées, car non concernées par ta demande) */
.contact-phone { background: rgba(46, 125, 50, 0.8); }
.btn-reserver { background: linear-gradient(135deg, rgba(255, 87, 34, 0.8), rgba(255, 138, 80, 0.8)); }
.btn-tarifs { background-color: rgba(211, 47, 47, 0.3); }
.contact-whatsapp { background: rgba(18, 140, 126, 0.8); }
.contact-sms { background: rgba(245, 124, 0, 0.8); }
.contact-email { background: rgba(211, 47, 47, 0.8); }
.social-instagram { background: linear-gradient(135deg, rgba(131, 58, 180, 0.8), rgba(225, 48, 108, 0.8), rgba(252, 175, 69, 0.8)); }
.social-facebook { background: rgba(25, 118, 210, 0.8); background-color: #1976d2; }
.social-tripadvisor { background: rgba(0, 166, 128, 0.8); background-color: #00a680; }
.social-pagesjaunes { background: rgba(255, 193, 7, 0.8); }
.contact-gbp { background: rgba(25, 118, 210, 0.8); }

/* Bouton "Heller le taxi" en rouge */
.social-buttons .social-btn:nth-child(3) {
  background: rgba(255, 0, 0, 0.8);
}

/* Image centrée */
.centered-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* Liste */
ul {
  color: #ffffff;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 40px;
}

/* Div reviews */
#reviews-container p {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media screen and (max-width: 400px) {
  .content { padding: 20px; }
  h1 { font-size: 1.8rem; }
  .subtitle, p { font-size: 0.95rem; }
  .social-buttons { flex-direction: column; gap: 10px; }
  .social-btn { font-size: 0.9rem; padding: 12px; min-width: 100%; max-width: 100%; }
  .centered-image { width: 100%; max-width: 100%; margin-bottom: 15px; }
}

@media screen and (min-width: 401px) {
  .social-btn {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
  }
}