@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --color-mmz-primary: #fda54c;
  --color-mmz-secondary: #97d0ed;
  --color-mmz-dark: #0c0d11;
  --color-mmz-gray: #bbbdbc;
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-mmz-dark);
  color: white;
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--color-mmz-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e59443;
}

/* Animations */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.animate-bounce-custom {
  animation: bounce 1.5s infinite ease-in-out;
}

/* Fade In Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}

/* WhatsApp Pulse Animation */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.animate-pulse-green {
  animation: pulse-green 2s infinite;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-mmz-primary) !important;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-mmz-primary) !important;
}

/* Prose for Legal Pages */
.prose h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.prose p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.75;
}
