/* menu_items.css */

/* Reset and basic styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black; /* Set background to black */
    overflow-x: hidden; /* Ensure horizontal overflow is hidden */
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent; /* Set background to transparent */
    z-index: 1000;
    display: flex;
    justify-content: flex-end; /* Align the menu icon to the right */
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 1001; /* Ensure it's above other elements */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.submenu {
    position: relative;
}

.submenu-content {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1002;
    padding-left: 20px; /* Add some padding to distinguish submenu items */
}

.submenu:hover .submenu-content {
    display: block;
    animation: dropdownItem 0.5s forwards; /* Animate dropdown items */
}

@keyframes dropdownItem {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}


 