/* Custom styles for the navigation bar */

/* Base styles for navigation items */
.navbar .menu-item {
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    font-size: 16px;
}

/* Hover effect for menu items - enlargement */
.navbar .menu-item:hover {
    transform: scale(2.2);
    font-weight: bold;
}

/* Additional styling for the navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

/* Logo styling */
.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.3);
}

/* Ensure the navbar items have enough space */
.navbar-nav {
    gap: 50px;
}

/* body {
	margin: 20px 20px 20px 100px;
} */

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar .menu-item:hover {
        transform: scale(1.1);
    }
}
