/* --- Navigation Core Styles --- */
html {
    scroll-behavior: smooth;
}

#navbar {
    transition: all 0.5s ease-in-out;
}

/* Premium Glass Effect on Scroll */
.glass-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(220, 84, 24, 0.1);
}

/* Desktop Nav Links - Only Color Transition */
.nav-link-custom {
    color: #4b5563; /* Gray-600 */
    transition: color 0.3s ease;
    font-weight: 600;
}

/* Active & Hover States (Text Color Only) */
.nav-link-custom:hover,
.nav-link-custom.active-link {
    color: #dc5418 !important; /* Taori Orange */
}

/* Dropdown Animation Logic */
.dropdown-animate {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.group:hover .dropdown-animate {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Sub-menu Item Styles */
.sub-item-active {
    background-color: #fff7ed !important; /* bg-orange-50 */
    color: #dc5418 !important;
}

/* Mobile Menu Specifics */
#mobileMenu {
    backdrop-filter: blur(8px);
}

.no-scroll {
    overflow: hidden;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #dc5418;
    border-radius: 10px;
}

/* Utility for Mobile Submenu Animation */
.animate-fade-in-up {
    animation: fadeInUp 0.3s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f8fafc;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #dc5418;
    border-radius: 10px;
}