/**
 * Theme Name:     Twenty Twenty Child
 * Author:         the WordPress team
 * Template:       twentytwenty
 * Text Domain:	   twenty-twenty-child
 * Description:    Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
 */
/* =========================================
   THIRD LEVEL WORDPRESS MENU
   ========================================= */

/* Make second-level parent able to hold a flyout */
.main-menu .sub-menu .menu-item-has-children,
.menu .sub-menu .menu-item-has-children {
    position: relative;
}

/* Hide third-level menu until hover */
.main-menu .sub-menu .sub-menu,
.menu .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 230px;
    background: #ffffff;
    padding: 8px;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Show Career Launch Academy when hovering Legacy Collective */
.main-menu .sub-menu .menu-item-has-children:hover > .sub-menu,
.menu .sub-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Third-level link styling */
.main-menu .sub-menu .sub-menu li,
.menu .sub-menu .sub-menu li {
    width: 100%;
    margin: 0;
}

.main-menu .sub-menu .sub-menu a,
.menu .sub-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 10px 14px;
    white-space: nowrap;
    color: #111;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
}

/* Same pink hover style as your existing dropdown */
.main-menu .sub-menu .sub-menu a:hover,
.menu .sub-menu .sub-menu a:hover {
    background: #fe6a8a;
    color: #fff;
}

/* Prevent parent dropdown from clipping third level */
.main-menu .sub-menu,
.menu .sub-menu {
    overflow: visible !important;
}

/* Optional arrow beside Legacy Collective */
.main-menu .sub-menu .menu-item-has-children > a::after,
.menu .sub-menu .menu-item-has-children > a::after {
    content: "›";
    float: right;
    margin-left: 12px;
    font-size: 18px;
    line-height: 1;
	/* =========================================
   THIRD LEVEL MENU - HORIZONTAL FLYOUT
   ========================================= */

/* Legacy Collective becomes the anchor for its submenu */
.navbar-nav .dropdown-menu .menu-item-has-children {
    position: relative;
}

/* Career Launch Academy submenu */
.navbar-nav .dropdown-menu .menu-item-has-children > .dropdown-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;

    margin: 0 0 0 5px !important;
    min-width: 230px;

    display: none;
    z-index: 99999;
}

/* Show Career Launch Academy beside Legacy Collective */
.navbar-nav .dropdown-menu .menu-item-has-children:hover > .dropdown-menu {
    display: block !important;
}

/* Don't let the Our Work dropdown cut off the flyout */
.navbar-nav .dropdown-menu {
    overflow: visible !important;
}
}