/* =========================================
   IN2IT WEBPAGE — CUSTOM STYLES
   Fonts: Kaftus (headers/brand), Lora (body)
   ========================================= */

/* --- Font Faces --- */
@font-face {
  font-family: 'Kaftus';
  src: url('fonts/kaftus/Kaftus.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kaftus';
  src: url('fonts/kaftus/KaftusOblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* --- Font Utility Classes --- */
.font-lora { font-family: 'Lora', serif; }
.font-kaftus { font-family: 'Kaftus', sans-serif; }

/* --- Starfield Canvas --- */
#starfield-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- Fade-In Animation --- */
.fade-section {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero Initial Animation --- */
.hero-content {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero-content.mounted {
  opacity: 1;
  transform: translateY(0);
}

/* --- CTA Button Shimmer --- */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn .shimmer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(94,234,212,0.8), rgba(110,231,183,0.8));
  transition: opacity 0.3s;
}
.cta-btn:hover .shimmer { opacity: 0.8; }

/* --- Voice Wave Animation --- */
.voice-bar {
  animation: voicePulse 1s ease-in-out infinite alternate;
}
@keyframes voicePulse {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1); }
}

/* --- Pulse Dot --- */
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.pulse-dot-anim {
  animation: pulse-glow 2s infinite;
}

/* --- Modal Slide-In --- */
.modal-panel {
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(2rem) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Timeline Dot Glow --- */
.timeline-dot-glow {
  box-shadow: 0 0 30px rgba(45,212,191,0.5);
}
.timeline-dot-glow-md {
  box-shadow: 0 0 40px rgba(45,212,191,0.6);
}
.timeline-dot-glow-lg {
  box-shadow: 0 0 50px rgba(45,212,191,0.8);
}

/* --- Footer CTA Glow --- */
.footer-cta {
  box-shadow: 0 0 30px rgba(45,212,191,0.2);
  transition: box-shadow 0.3s, background-color 0.3s;
}
.footer-cta:hover {
  box-shadow: 0 0 40px rgba(45,212,191,0.4);
}

/* --- Selection Highlight --- */
::selection {
  background: rgba(20,184,166,0.3);
  color: rgb(153,246,228);
}

/* --- Scrollbar (minimal) --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* --- Lucide SVG Icons --- */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 3rem; height: 3rem; }
