/* Custom styles for Uptown Check Cashing */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fffaf0;
}
::-webkit-scrollbar-thumb {
    background: #942323;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7a2020;
}

/* Selection color */
::selection {
    background: #dc4c4c;
    color: #fffdf8;
}

/* Service card hover effects */
.service-card {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Mobile menu animations */
#mobileMenu {
    animation: slideDown 0.3s ease-out forwards;
}

#mobileMenu.hidden {
    animation: none;
}

/* Navbar scroll effect */
#navbar.scrolled {
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Intersection observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

/* Geometric shape animations */
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.morph-shape {
    animation: morph 8s ease-in-out infinite;
}

/* Pulse ring animation */
@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

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

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #6b1d1d 0%, #dc4c4c 50%, #ff4d75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Button press effect */
button:active, a:active {
    transform: scale(0.97);
}

/* Print styles */
@media print {
    header, footer, .animate-float, .animate-float-delayed, .animate-float-slow {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}
