.brand-script {
  font-family: "Pacifico", cursive;
}

.hero-gradient {
  background: linear-gradient(0deg,
      rgba(21, 21, 21, 0.8) 0%,
      rgba(21, 21, 21, 0.2) 100%);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes floatSlow {

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

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

@keyframes slowZoom {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.reveal {
  animation: fadeUp 0.9s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.15s;
}

.reveal-delay-2 {
  animation-delay: 0.3s;
}

.reveal-delay-3 {
  animation-delay: 0.45s;
}

.reveal-delay-4 {
  animation-delay: 0.6s;
}

.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.slow-zoom {
  animation: slowZoom 18s ease-in-out infinite;
}

.hover-lift {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.scroll-fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.scroll-slide-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

.scroll-slide-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.scroll-slide-up {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

.scroll-scale-in {
  opacity: 0;
  animation: scaleIn 0.8s ease forwards;
}

.scroll-rotate-in {
  opacity: 0;
  animation: rotateIn 0.8s ease forwards;
}

.scroll-animation-delay-1 {
  animation-delay: 0.1s;
}

.scroll-animation-delay-2 {
  animation-delay: 0.2s;
}

.scroll-animation-delay-3 {
  animation-delay: 0.3s;
}

/* Prevent flash of unstyled content for animated elements */
[data-animate] {
  opacity: 0;
}

/* Mobile menu transitions */
.mobile-menu-enter {
  transform: translateX(100%);
}

.mobile-menu-enter-active {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-exit {
  transform: translateX(0);
}

.mobile-menu-exit-active {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Make animations smoother */
.reveal,
.scroll-fade-in,
.scroll-slide-left,
.scroll-slide-right,
.scroll-slide-up,
.scroll-scale-in,
.scroll-rotate-in {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
