/* Custom styles that extend Tailwind */

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

/* Custom selection color */
::selection {
    background-color: #059669;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
    background: #d1fae5;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

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

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

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

/* Navbar transition */
#navbar.scrolled #nav-container {
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 2.75rem;
    }
    .rounded-\[2\.5rem\] {
        border-radius: 1.5rem;
    }
}
