/* Basic Navbar Styling */
.menu-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes icons left and links right */
    padding: 0 30px; /* Increased padding */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* Increased z-index significantly */
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.3s;
    height: 80px; /* Adjust as needed */
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

.menu-team-icons {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent icons from shrinking */
}

.menu-team-logo {
    height: 70px; /* Adjust as needed */
    margin-right: 10px;
}

.menu-team-name {
    height: 40px; /* Adjust as needed */
}

.menu-links {
    display: flex;
    align-items: center;
}

.menu-item {
    position: relative;
    margin: 0 25px; /* Spacing between menu items */
}

.menu-link {
    color: black;
    text-decoration: none;
    font-size: 23px; /* Increased font size */
    padding: 10px 0;
    display: block;
    cursor: pointer;
    font-weight: 500; /* Slightly bolder */
    position: relative; /* Needed for the arrow pseudo-element */
    padding-right: 15px; /* Space for the arrow */
}

.menu-link.has-dropdown::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid black; /* This creates the down arrow */
    transition: transform 0.3s;
}

.menu-item.active .menu-link.has-dropdown::after {
    transform: translateY(-50%) rotate(180deg); /* Flip arrow on open */
}

/* Dropdown Styling */
.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%; /* Center relative to the parent */
    transform: translateX(-50%); /* Complete the centering */
    background-color: white;
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Enhanced shadow */
    padding: 30px 20px; /* Increased padding */
    margin-top: 15px; /* More space from navbar */
    width: 700px; /* Increased width */
    z-index: 1145141919810;
    box-sizing: border-box;
}

.menu-item.active .menu-dropdown {
    display: block;
}

.menu-dropdown-content {
    display: flex;
    justify-content: space-around; /* Distribute columns evenly */
}

.menu-dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Increased space between items in a column */
}

.menu-dropdown-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

.menu-dropdown-icon {
    width: 35px; /* Placeholder for SVG */
    height: 35px;
    margin-right: 20px;
    /* background-color: #eee;  For visualization */
}

.menu-dropdown-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-dropdown-text {
    display: flex;
    flex-direction: column;
}

.menu-dropdown-title {
    font-weight: bold;
    font-size: 17px; /* Slightly larger */
}

.menu-dropdown-subtitle {
    font-size: 14px;
    color: #666;
}

.menu-dropdown-bg-image {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 120px; /* Adjust as needed */
    height: auto;
    opacity: 0.3; /* Slightly more subtle */
    pointer-events: none; /* Make sure it's not clickable */
    z-index: -1;
}
