/* Custom Styles for My Bar */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F0EB;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #A3432F;
}

/* Base Typography overrides */
body {
    font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4, .font-syne {
    font-family: 'Syne', sans-serif;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar blur effect when scrolled */
.nav-scrolled {
    background-color: rgba(245, 240, 235, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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