/* Custom CSS for Dublin Snoball */

:root {
  --plum-50: #faf5ff;
  --plum-100: #f3e8ff;
  --plum-200: #e9d5ff;
  --plum-300: #d8b4fe;
  --plum-400: #c084fc;
  --plum-500: #a855f7;
  --plum-600: #9333ea;
  --plum-700: #7e22ce;
  --plum-800: #6b21a8;
  --plum-900: #581c87;
  
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
}

/* Font Families */
.font-fredoka {
  font-family: 'Fredoka', sans-serif;
}

.font-quicksand {
  font-family: 'Quicksand', sans-serif;
}

/* Custom Animations */
@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

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

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

.animation-delay-2000 {
  animation-delay: 0.5s;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.1);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--plum-50);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--plum-400), var(--amber-400));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--plum-500), var(--amber-500));
}

/* Selection Color */
::selection {
  background: var(--plum-200);
  color: var(--plum-900);
}

/* Focus Styles */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* Button Hover Effects */
button:hover,
a:hover {
  transform: translateY(-2px);
}

button:active,
a:active {
  transform: translateY(0);
}

/* Image Hover Zoom */
img {
  transition: transform 0.3s ease;
}

/* Mobile Menu Transition */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobile-menu.active {
  max-height: 400px;
}

/* Responsive Typography */
@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none;
  }
}
