.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Smooth Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }

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

  100% {
    transform: translateY(0px);
  }
}

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

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Hover Enhancements */
.btn-hover-scale {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.btn-hover-scale:active {
  transform: scale(0.98);
}

/* Background Paw Accents */
.paw-accent {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .animate-float,
  .btn-hover-scale,
  .animate-bounce,
  .animate-pulse {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
