/* === Vol Panique — Bandeau identitaire persistant (toutes les pages) === */

/* Fond décoratif sky avec quelques nuages discrets */
body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(125,211,252,0.06) 0%, transparent 40%),
    radial-gradient(circle at 88% 72%, rgba(251,191,36,0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

#app, .card, .container { position: relative; z-index: 1; }

/* Bandeau compact */
.vol-panique-banner {
  position: relative;
  z-index: 1;
  margin: -28px -24px 16px;
  padding: 18px 20px 14px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(125,211,252,0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(251,191,36,0.10) 0%, transparent 50%),
    rgba(0,0,0,0.15);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

/* Petits nuages dans les coins */
.vol-panique-banner::before {
  content: '';
  position: absolute;
  top: -10px; right: -20px;
  width: 130px; height: 60px;
  background:
    radial-gradient(circle at 30% 60%, rgba(255,255,255,0.08) 0%, transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.vol-panique-banner::after {
  content: '';
  position: absolute;
  bottom: -10px; left: -15px;
  width: 100px; height: 50px;
  background: radial-gradient(circle at 40% 50%, rgba(125,211,252,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Petits nuages décoratifs centrés en haut */
.banner-nuages {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 8px;
  height: 22px;
}
.nuage-deco {
  width: 36px; height: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 2px 6px rgba(14,165,233,0.18);
  position: relative;
  animation: nuage-banner-float 4s ease-in-out infinite;
  will-change: transform;
}
.nuage-deco::before,
.nuage-deco::after {
  content: '';
  position: absolute;
  top: -6px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
}
.nuage-deco::before { left: 6px;  width: 12px; height: 12px; }
.nuage-deco::after  { right: 8px; width: 9px;  height: 9px; }
.nuage-deco.nuage-2 { animation-delay: -1.3s; opacity: 0.85; }
.nuage-deco.nuage-3 { animation-delay: -2.6s; opacity: 0.7; }
@keyframes nuage-banner-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Titre-lien */
.banner-title {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7dd3fc, #0ea5e9, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity 0.2s;
}
.banner-title:hover { opacity: 0.8; }

/* Responsive */
@media (max-width: 480px) {
  .vol-panique-banner { padding: 14px 14px 10px; border-radius: 20px 20px 0 0; }
  .banner-title { font-size: 1.1rem; }
  .nuage-deco { width: 30px; height: 12px; }
  .banner-nuages { gap: 14px; }
}
