/* ===== Welcome Page – CSP friendly ===== */

.welcome-empty-state {
  text-align: center;
  padding: 0px 20px;
}

.welcome-icon img {
  width: 120px;
  height: 120px;
  opacity: 1;
  margin-bottom: 30px;
}

.welcome-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;         /* la taille de "Drop ta Vibe" */
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}

.welcome-sub {
  display: block;
  font-size: 1.2rem;   
  color: #fff;
}
.welcome-message {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.welcome-error {
  color: #C2185B;
  font-weight: 600;
  margin-bottom: 20px;
}

.welcome-icon-error {
  color: #dc3545;
  font-size: 3rem;
}

.welcome-link {
  color: #C2185B;
  text-decoration: underline;
}

.welcome-actions {
  margin-top: 30px;
}

/* Bouton "Mode en ligne" identique au bouton Se connecter (login) */
.welcome-btn {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;        /* lien = inline-block pour centrer */
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  border: 2px solid #C2185B;
  box-shadow: 0 4px 20px rgba(255, 80, 162, 0.25);
  margin-top: 20px;
}

.welcome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 80, 162, 0.35);
  color: #fff;
  text-decoration: none;
}

.welcome-btn:active {
  transform: translateY(0);
}

.welcome-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.member-login-link {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}

.member-login-title {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #C2185B;
  text-decoration: underline;
}

.member-login-subtitle {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

/* État après activation (si utilisé plus tard) */
.member-login-link.active .member-login-title {
  color: #888;
  text-decoration: none;
}
.member-login-link.active .member-login-subtitle {
  color: #aaa;
}

.back-to-scan-link {
  color: #888;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
  font-style: italic;
}

/* --- Zone scan (ajustements) --- */
.welcome-empty-state .scanqr-page-scan-zone {
  margin-top: 20px;
}

/* Icône QR plus petite et rose – taille ajustée */
.welcome-empty-state .scanqr-page-qr-icon {
  width: 150px;          /* compromis entre 48 et 96 */
  height: 150px;
  color: #fff;
  transition: color 0.2s ease;
}

/* Wrapper de l’icône */
.welcome-empty-state .scanqr-page-qr-icon-wrapper {
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

/* Texte sous l’icône */
.welcome-empty-state .scanqr-page-hint {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}