/* =====================================================
   BLUUPI — FEUILLE COMMUNE
   Fichier : commun.css
   Objectif : uniformiser le design sur toutes les pages
   ===================================================== */

/* === PALETTE DE COULEURS === */
:root {
  --bluupi-navy: #0E3E61;       /* fond principal */
  --bluupi-blue: #127194;       /* bleu secondaire */
  --bluupi-light: #3CA6D6;      /* accent doux */
  --bluupi-cyan: #5CD6F4;       /* boutons primaires */
  --bluupi-gray-light: #E6EEF2; /* fonds clairs */
  --bluupi-gray-dark: #4B5A68;  /* texte secondaire */
  --bluupi-white: #FFFFFF;      /* texte clair */
}

/* === FOND GLOBAL BLEU === */
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 10%,
    var(--bluupi-blue) 0%,
    var(--bluupi-navy) 40%,
    #020B1F 100%
  );
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: var(--bluupi-white);
}

/* Corrige tous les débordements de largeur */
*, *::before, *::after { box-sizing: border-box; }

/* === CADRE DE TYPE SMARTPHONE === */
.app-frame {
  width: 430px;              /* iPhone 14–17 Pro Max */
  max-width: 100%;
  height: 932px;
  max-height: 100vh;
  background-color: var(--bluupi-navy);
  border-radius: 28px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Supprime la barre de scroll pour un rendu propre */
.app-frame::-webkit-scrollbar {
  width: 0;
}

/* === TITRES ET TEXTES === */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--bluupi-white);
}

p {
  line-height: 1.4;
}

/* === BOUTONS === */
.btn-primary {
  background: var(--bluupi-cyan);
  color: var(--bluupi-navy);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary, .btn-ghost {
  background: transparent;
  color: var(--bluupi-white);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

/* === LIEN DE RETOUR (ex: “Volver al asistente Bluupi”) === */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #c9ddff;
  text-decoration: none;
  opacity: 0.9;
  margin-bottom: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .app-frame {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}
/* Wrapper pour pouvoir positionner le disque par-dessus Bluupi */
.bluupi-avatar-wrapper {
  position: relative;
  display: inline-block;
}

/* Disque animé (par-dessus le disque de l'image) */
.bluupi-disc {
  position: absolute;
  /* Ces valeurs sont à ajuster en fonction du rendu */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    #ffcc00,
    #ff6600,
    #ff0066,
    #9933ff,
    #007bff,
    #00c896,
    #ffcc00
  );
  box-shadow: 0 0 14px rgba(92, 214, 244, 0.7);
  opacity: 0;
  pointer-events: none;
}

/* Quand Bluupi "parle" (classe listening sur le body), on montre + on anime le disque */
body.listening .bluupi-disc {
  opacity: 1;
  animation: bluupiDiscSpin 0.9s linear infinite;
}

@keyframes bluupiDiscSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
