/* Global Font Settings */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc; /* bg-slate-50 */
  color: #1f2937; /* text-gray-800 */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Sora', sans-serif;
}

/* --- Animations --- */

/* "Breathing" animation for CTA buttons */
@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); /* emerald-600 */
  }
  50% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
}

.animate-pulse-shadow {
  animation: pulse-shadow 3s infinite;
}

/* "Organic" shape animations for backgrounds */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  will-change: transform, opacity;
  z-index: 0;
}

@keyframes move-blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -20px) scale(1.1); }
}
@keyframes move-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
}

.blob-1 {
  width: 400px;
  height: 400px;
  top: -50px;
  left: -100px;
  background: #67e8f9; /* cyan-300 */
  animation: move-blob-1 15s infinite ease-in-out;
}
.blob-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background: #fde047; /* yellow-300 */
  animation: move-blob-2 20s infinite ease-in-out;
}

/* Navigation Links Active State */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #059669; /* emerald-600 */
  transition: width 0.3s ease-in-out;
}
.nav-link:hover::after {
  width: 100%;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* --- Mobile Menu Transitions --- */
#mobile-menu {
  /* Default state: Hidden, scaled down, transparent */
  transform: scale(0.95);
  opacity: 0;
  visibility: hidden;
  transform-origin: top right; /* Animate from the button location */
  transition: all 0.2s ease-in-out;
}

#mobile-menu.open {
  /* Open state: Visible, full scale, opaque */
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}