/* ============================================================
   TransChoice® – style.css
   Reset di base + schermata di caricamento personalizzata
   ============================================================ */

/* ── Schermata di caricamento custom ─────────────────────────── */
#tc-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e0c0a;
  transition: opacity .45s ease;
}

#tc-loader.tc-loader-hidden {
  opacity: 0;
  pointer-events: none;
}

#tc-loader .tc-loader-logo {
  height: 40px;
  animation: tc-pulse 1.4s ease-in-out infinite;
}

@keyframes tc-pulse {
  0%, 100% { opacity: .55; transform: scale(.97); }
  50%      { opacity: 1;   transform: scale(1);   }
}

/* Nasconde lo scroll mentre il loader è visibile */
body.tc-loading {
  overflow: hidden;
}
