/* BiBoo vitrine — design system 2024 (complète Tailwind CDN) */
:root {
  --biboo-teal: #00b5a3;
  --biboo-teal-dark: #008f80;
  --biboo-navy: #1a2b4a;
  --biboo-yellow: #ffd24c;
  --biboo-light: #f0fafa;
  --biboo-gray-text: #64748b;
  --teal: #00b5a3;
  --teal-dark: #007a6e;
  --teal-light: #e0f7f5;
  --navy: #0f1f3d;
  --navy-mid: #1a2b4a;
  --gold: #f4c842;
  --white: #ffffff;
  --off-white: #f8fffe;
  --gray-soft: #f1f5f4;
  --text-main: #0f1f3d;
  --text-muted: #6b7c8d;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-card: 0 4px 24px rgba(0, 181, 163, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(0, 181, 163, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  font-family: "DM Sans", system-ui, sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Sora", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@keyframes biboo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes biboo-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes biboo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.biboo-float {
  animation: biboo-float 4s ease-in-out infinite;
}

.biboo-fade-in-up {
  animation: biboo-fade-in-up 0.7s ease forwards;
}

.biboo-marquee-track {
  display: flex;
  width: max-content;
  animation: biboo-marquee 25s linear infinite;
}

.biboo-marquee-track:hover {
  animation-play-state: paused;
}

.hero-gradient {
  background: linear-gradient(135deg, #e8faf8 0%, #f0fafa 50%, #ebf5ff 100%);
}

.mesh-hero {
  background-color: var(--off-white);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 181, 163, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(15, 31, 61, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(244, 200, 66, 0.08) 0%, transparent 50%);
}

.mesh-dark {
  background-color: #0f1f3d;
  background-image:
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(0, 181, 163, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(244, 200, 66, 0.1) 0%, transparent 50%);
}

.mesh-light {
  background-color: var(--off-white);
  background-image:
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(0, 181, 163, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 50%, rgba(15, 31, 61, 0.04) 0%, transparent 50%);
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 181, 163, 0.15);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.promo-banner-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.promo-card-dynamic {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
}

.promo-card-dynamic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 181, 163, 0.1);
  color: #007a6e;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0, 181, 163, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 181, 163, 0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 181, 163, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-biboo-navy {
  color: var(--biboo-navy);
}

/* Cartes / grilles existantes : léger upgrade sans casser le layout */
.biboo-content-card {
  border-radius: 1.5rem;
  border: 1px solid rgb(243 244 246);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
}
