/* $JOOBI - Custom styles cloned from original */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  min-height: 100vh;
  margin: 0;
  font-family: "Sedgwick Ave", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Animations */
@keyframes bounce-gentle {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  to {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes pulse-glow {
  0%,
  to {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.8);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.bounce-gentle {
  animation: bounce-gentle 2s ease-in-out infinite;
}

.marquee {
  animation: marquee 25s linear infinite;
  display: flex;
  width: max-content;
}

.marquee-reverse {
  animation: marquee-reverse 30s linear infinite;
  display: flex;
  width: max-content;
}

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

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scroll reveal */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.scroll-fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}
.scroll-fade-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}
.scroll-fade-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}
.scroll-scale.animate {
  opacity: 1;
  transform: scale(1);
}

.scroll-slide-down {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 0.8s ease-out;
}
.scroll-slide-down.animate {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* Text shadows - exact from original */
.text-shadow-thick {
  text-shadow:
    4px 4px 0 #000000,
    8px 8px 0 rgba(0, 0, 0, 0.5),
    12px 12px 20px rgba(0, 0, 0, 0.8);
}

.text-shadow-yellow {
  text-shadow:
    3px 3px 0 #000000,
    6px 6px 0 rgba(0, 0, 0, 0.7),
    9px 9px 15px rgba(0, 0, 0, 0.9);
}

.text-shadow-black {
  text-shadow:
    2px 2px 0 #ffc107,
    4px 4px 0 rgba(255, 193, 7, 0.7),
    6px 6px 10px rgba(255, 193, 7, 0.5);
}

.text-shadow-glow {
  text-shadow:
    0 0 10px #ffc107,
    0 0 20px #ffc107,
    0 0 30px #ffc107,
    3px 3px 0 #000000,
    6px 6px 10px rgba(0, 0, 0, 0.8);
}

/* Background pattern */
.bg-yellow-pattern {
  background-image: radial-gradient(
    circle at 25px 25px,
    rgba(255, 193, 7, 0.1) 2px,
    transparent 0
  );
  background-size: 50px 50px;
}

/* Header offset for fixed nav */
#home {
  padding-top: 72px;
}

/* Image quality */
img {
  max-width: 100%;
  height: auto;
}
