/* ============================================
   COREVIA — Custom Styles (Tailwind handles the rest)
   ============================================ */

/* Material Symbols baseline */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Architectural Inset — signature asymmetric border-radius */
.architectural-inset {
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 0;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Form loading spinner */
.btn-loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Subtle animations for scroll reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
