.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 200,
    "GRAD" 0,
    "opsz" 24;
}
.text-glow:hover {
  text-shadow: 0 0 15px rgba(242, 202, 80, 0.4);
}
.bg-gold-gradient {
  background: linear-gradient(135deg, #f2ca50 0%, #d4af37 100%);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}
