/* styles.css */

body { font-family: 'Outfit', sans-serif !important; }
html {
  scroll-behavior: smooth;
}

.fade-section {
  /* Always visible – no more empty sections */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Subtle hover card effect */
.hover-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

/* Sticky WhatsApp FAB (mobile) */
.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    display: none;
  }
}
