/*
 * Natural Road to Health
 * Footer Navigation
 *
 * Corporation: From Vision To Reality Inc.
 * Development: Nuts and Bolts Coaching
 * Created: September 27, 2026
 *
 * Purpose:
 * Controls the footer navigation menus.
 * Keeps the menus vertical and open across desktop,
 * tablet, and phone layouts.
 */


/* ==========================================================================
   ALL FOOTER MENU SIZES
   ========================================================================== */

/* Keep each footer menu item on its own line */
.et_pb_menu.tv-open-mobile-menu .et-menu {
	display: block !important;
	width: 100% !important;
}

.et_pb_menu.tv-open-mobile-menu .et-menu > li {
	display: block !important;
	width: 100% !important;
	float: none !important;
	text-align: left !important;
}


/* ==========================================================================
   TABLET AND PHONE
   ========================================================================== */

@media (max-width: 980px) {

	/* Keep the desktop-style menu visible */
	.et_pb_menu.tv-open-mobile-menu .et_pb_menu__menu {
		display: flex !important;
		width: 100% !important;
	}

	/* Hide Divi's hamburger/mobile menu */
	.et_pb_menu.tv-open-mobile-menu .et_mobile_nav_menu {
		display: none !important;
	}

	/*
	 * Allow the menu navigation wrapper to use
	 * the full available width.
	 */
	.et_pb_menu.tv-open-mobile-menu nav.et-menu-nav {
		width: 100% !important;
		flex: 1 1 100% !important;
	}

	/* Allow the actual menu list to use that full width */
	.et_pb_menu.tv-open-mobile-menu .et-menu {
		display: block !important;
		width: 100% !important;
	}

	/* Keep every menu item on its own line */
	.et_pb_menu.tv-open-mobile-menu .et-menu > li {
		display: block !important;
		width: 100% !important;
		float: none !important;
		text-align: left !important;
	}
}


/* ==========================================================================
   DESKTOP
   ========================================================================== */

@media (min-width: 981px) {

	/* Allow the menu wrapper to use the full module width */
	.et_pb_menu.tv-open-mobile-menu .et_pb_menu__menu {
		display: block !important;
		width: 100% !important;
	}

	/* Allow the navigation wrapper to use the full width */
	.et_pb_menu.tv-open-mobile-menu nav.et-menu-nav {
		width: 100% !important;
	}

	/* Allow the actual menu list to use the full width */
	.et_pb_menu.tv-open-mobile-menu .et-menu {
		display: block !important;
		width: 100% !important;
	}

	/* Keep every menu item on its own line */
	.et_pb_menu.tv-open-mobile-menu .et-menu > li {
		display: block !important;
		width: 100% !important;
		float: none !important;
		text-align: left !important;
	}
}