/* Custom styles for Quenchies */

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

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

::-webkit-scrollbar-track {
    background: #111a15;
}

::-webkit-scrollbar-thumb {
    background: #2d6535;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #46834d;
}

/* Gold gradient text animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.text-transparent.bg-clip-text.bg-gradient-to-r {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(10, 15, 13, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hover effects for cards */
.group:hover .group-hover\:rotate-12 {
    transform: rotate(12deg);
}

/* Pulse animation for decorative elements */
@keyframes soft-pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

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

/* Form focus styles */
input:focus,
textarea:focus {
    outline: none;
}

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

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

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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