/* === Simon — Bandeau identitaire persistant (toutes les pages) === */

/* Motif décoratif en fond du body */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle, rgba(34,197,94,0.04) 30%, transparent 31%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

#app { position: relative; z-index: 1; }

/* Bandeau compact */
.simon-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(134,239,172,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(34,197,94,0.08) 0%, transparent 50%),
    rgba(0,0,0,0.15);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

/* Motifs décoratifs dans les coins */
.simon-banner::before {
  content: '';
  position: absolute;
  top: -15px; right: -20px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(34,197,94,0.1) 30%, transparent 31%);
  background-size: 28px 28px;
  border-radius: 14px;
  transform: rotate(15deg);
  opacity: 0.6;
  pointer-events: none;
}
.simon-banner::after {
  content: '';
  position: absolute;
  bottom: -10px; left: -15px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(134,239,172,0.08) 30%, transparent 31%);
  background-size: 22px 22px;
  border-radius: 12px;
  transform: rotate(-10deg);
  opacity: 0.5;
  pointer-events: none;
}

/* Pads décoratifs flottants */
.banner-pads {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.simon-banner .pad-deco {
  width: 28px; height: 28px;
  border-radius: 6px;
  animation: pad-banner-float 3s ease-in-out infinite;
  will-change: transform;
}
.simon-banner .pad-deco:nth-child(2) { animation-delay: -0.75s; }
.simon-banner .pad-deco:nth-child(3) { animation-delay: -1.5s; }
.simon-banner .pad-deco:nth-child(4) { animation-delay: -2.25s; }
.pad-rouge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 3px 8px rgba(239,68,68,0.5), inset 0 -2px 3px rgba(255,255,255,0.15);
}
.pad-bleu {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 3px 8px rgba(59,130,246,0.5), inset 0 -2px 3px rgba(255,255,255,0.15);
}
.pad-vert {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 3px 8px rgba(34,197,94,0.5), inset 0 -2px 3px rgba(255,255,255,0.15);
}
.pad-jaune {
  background: linear-gradient(135deg, #facc15, #eab308);
  box-shadow: 0 3px 8px rgba(250,204,21,0.5), inset 0 -2px 3px rgba(255,255,255,0.15);
}
@keyframes pad-banner-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Titre-lien */
.banner-title {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #86efac, #22c55e, #16a34a);
  -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) {
  .simon-banner { padding: 14px 14px 10px; border-radius: 20px 20px 0 0; }
  .banner-title { font-size: 1.1rem; }
  .simon-banner .pad-deco { width: 22px; height: 22px; }
}
