/* Custom Styles for Gerex */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
}

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-scrolled #nav-logo-text,
.nav-scrolled a:not(.bg-white) {
    color: #1F2937; /* gray-800 */
}

.nav-scrolled .bg-white {
    background-color: #701f35; /* brand burgundy */
}

.nav-scrolled .bg-white:hover {
    background-color: #4a1020; /* brand deep */
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(252, 228, 236, 0.5);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #4a1020;
}
