/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom scrollbar for Webkit */
    scrollbar-width: thin;
    scrollbar-color: #ed64a6 #f1f5f9;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #d53f8c;
}

/* Navbar transition styles */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-scrolled #nav-logo-text {
    color: #1a202c;
}

.nav-scrolled .mobile-menu-btn path {
    stroke: #1a202c;
}

.nav-scrolled a:not(.bg-white) {
    color: #2d3748;
}

.nav-scrolled a:not(.bg-white):hover {
    color: #ed64a6;
}

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
