/* =============================================
   TransferDisneyland.fr — Custom Styles
   ============================================= */

:root {
  --blue-disney:  #003087;
  --blue-light:   #0060a9;
  --gold:         #FFD700;
  --cream:        #f5f0e8;
  --dark:         #1a1a2e;
}

/* Base */
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}

/* Bouton WhatsApp flottant */
#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}

#whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Switcher langue */
.lang-switcher button {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 2px solid var(--gold);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, var(--blue-disney) 0%, var(--blue-light) 100%);
}

/* CTA button */
.btn-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 9999px;
  padding: 14px 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
}

/* Card */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,48,135,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,48,135,0.14);
}

/* Section title */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-disney);
  line-height: 1.2;
}

/* Star rating */
.stars { color: var(--gold); letter-spacing: 2px; }

/* Langue toggle (contenu bilingue) */
[data-lang] { display: none; }
[data-lang].active { display: block; }
span[data-lang].active { display: inline; }

/* Responsive helpers */
@media (max-width: 640px) {
  .section-title { font-size: 1.5rem; }
  .btn-cta { padding: 12px 24px; }
}
