/* ==============================================================================
   Serander Oto Lastik — Native Tailwind Dark & Light Theme System
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Brand Accent Color Helpers */
.text-brand-accent {
  color: #D97706 !important;
}

html.dark .text-brand-accent {
  color: #F59E0B !important;
}

.bg-brand-accent {
  background-color: #F59E0B !important;
  color: #000000 !important;
}

.bg-brand-accent:hover {
  background-color: #D97706 !important;
}

/* Pulsing Emergency Call Animation */
@keyframes pulse-ring {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.pulse-call {
  animation: pulse-ring 2.2s infinite;
}

/* Smooth Transitions for Interactive Elements */
a, button {
  transition: all 0.2s ease-in-out;
}
