/* Modern CSS Animations & Effects */
@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 30s ease infinite;
}

.animate-float {
  animation: float 10s ease-in-out infinite;
}

.fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(15, 90, 71, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 90, 71, 0.2);
}

/* Modern Card with 3D effect */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
}

/* Gradient mesh background */
.gradient-mesh {
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 90, 71, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(215, 204, 125, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
}

/* Shimmer effect for CTA */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
}

/* Advanced shadow system */
.shadow-brutal {
  box-shadow: 8px 8px 0 0 rgba(15, 90, 71, 0.2);
}

.shadow-brutal:hover {
  box-shadow: 12px 12px 0 0 rgba(15, 90, 71, 0.3);
  transform: translate(-2px, -2px);
}

/* Neon glow effect */
.glow-green {
  box-shadow: 0 0 20px rgba(15, 90, 71, 0.3),
    0 0 40px rgba(15, 90, 71, 0.1);
}

.glow-green:hover {
  box-shadow: 0 0 30px rgba(15, 90, 71, 0.5),
    0 0 60px rgba(15, 90, 71, 0.2);
}

/* Hero gradient fade effect */
.hero-gradient-fade {
  background: white;
  min-height: 50vh;
}

/* Prose styling for content pages */
.prose {
  max-width: 65ch;
}

.prose h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.75rem;
  margin-bottom: 2rem;
  color: #0f5a47;
}

.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #0c4b3c;
}

.prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.875rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #2b3450;
}

.prose p {
  font-family: 'Inter', system-ui, sans-serif;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose ol,
.prose ul {
  font-family: 'Inter', system-ui, sans-serif;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose ol {
  list-style-type: decimal;
}

.prose ul {
  list-style-type: disc;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.prose strong {
  font-weight: 600;
  color: #121826;
}

.prose hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-color: #d7cc7d;
}

.prose a {
  color: #0f5a47;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: #0c4b3c;
}

/* Hide the reCAPTCHA badge */
.grecaptcha-badge {
  display: none !important;
}
