/* Top Bar styles */
.top-bar {
    transition: all 0.3s ease;
    z-index: 1050;
    position: relative;
}

.hover-opacity:hover {
    opacity: 0.8;
}

.text-small {
    font-size: 0.85rem;
}

/* Navbar Enhancements */
.hero-navbar {
    transition: all 0.3s ease;
}

.hero-navbar.sticky-top {
    z-index: 1040;
}

.nav-link {
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}

.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

/* Dropdown Animation */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform-origin: top;
    animation: dropdownSlide 0.3s ease forwards;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.8rem; /* Slide effect */
}

/* Button Hover */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4) !important;
}
