/* Custom Styles for Barberia Nashville */

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

/* Custom Blob Animation for Hero */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

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

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #71a178;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.hidden {
    opacity: 0;
    pointer-events: none;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(252, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Form Focus Styles */
input:focus, select:focus {
    border-color: #4f8056;
    box-shadow: 0 0 0 3px rgba(79, 128, 86, 0.2);
}
