/* =========================================
   14AM CUSTOM NAV — shared across all pages
   ========================================= */

/* ===== Header / Split Menu (Desktop) ===== */
#tt-header .tt-header-inner {
	background-color: rgb(225, 240, 90) !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
    margin-top: 0px;
}

#tt-header .tt-header-col-left,
#tt-header .tt-header-col-right {
	flex: 1 !important;
	align-items: center !important;
}

@media (min-width: 992px) {
	#tt-header .tt-header-col-left,
	#tt-header .tt-header-col-right {
		display: flex !important;
	}
}

#tt-header .tt-header-col-left {
	justify-content: flex-end !important;
}

#tt-header .tt-header-col-right {
	justify-content: flex-end !important;
	gap: 20px !important;
}

#tt-header .tt-header-col-center {
	flex: 0 0 auto !important;
}

#tt-header {
	transition: transform 0.4s ease;
}

.tt-split-menu-list {
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-split-menu-list a {
	position: relative;
	font-family: 'Anton', sans-serif;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	color: #000;
	text-decoration: none;
}

.tt-split-menu-list a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.tt-split-menu-list a:hover::after {
	width: 100%;
}

#tt-header .tt-logo img {
	width: 130px;
	height: auto;
  /* padding: 1em 4em 1em 4em; */
}








/* ===== Header Logo Light/Dark Swap ===== */
/* .nav-logo-light { display: block !important; }
.nav-logo-dark { display: none !important; }

body:not(.tt-lightmode-on) .nav-logo-light { display: none !important; }
body:not(.tt-lightmode-on) .nav-logo-dark { display: block !important; } */

/* ===== Mobile Menu Logo Light/Dark Swap ===== */
/* .mobile-logo-light { display: block !important; }
.mobile-logo-dark { display: none !important; }

body:not(.tt-lightmode-on) .mobile-logo-light { display: block !important;}
body:not(.tt-lightmode-on) .mobile-logo-dark { display: none !important; } */

/* ===== Hamburger Toggle ===== */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10001;
}

.hamburger span {
	display: block;
	width: 26px;
	height: 3px;
	background: #000;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ===== Close Button (X) inside open mobile menu ===== */
.hamburger-close {
	position: relative;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 3px;
	background: #fbfbfb;
	transition: background 0.3s ease;
}

.hamburger-close span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

body:not(.tt-lightmode-on) .hamburger-close span {
	background: #000000;
}

/* ===== Full-Page Mobile Menu ===== */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	z-index: 10000;
	display: none;
	flex-direction: column;
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

body:not(.tt-lightmode-on) .mobile-menu {
	background: #fff;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
    background-color: rgb(0, 0, 0);
    padding-top: 15px;
    padding-bottom: 15px;
}


.mobile-menu-header .nav-logo {
	width: 130px;
	height: auto;
	/* padding: 1em; */
	/* background-color: transparent; */
}

.mobile-menu-links {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.mobile-menu-link {
	font-family: 'Anton', sans-serif;
	font-size: 2.4em;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	letter-spacing: 0.02em;
	transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
	opacity: 0;
	transform: translateY(20px);
}

body:not(.tt-lightmode-on) .mobile-menu-link {
	color: #000;
}

.mobile-menu.open .mobile-menu-link {
	opacity: 1;
	transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.43s; }

.mobile-menu-link:hover {
	color: #888;
}

/* ===== Mobile Menu Logo Color Swap =====
 * OPTION A: Black logo on green header (current)
 * OPTION B: White logo on green header
 * Comment/uncomment to switch
 * ================================= */

/* OPTION A: Black logo */
.mobile-logo-light { display: none !important; }
.mobile-logo-dark { display: block !important; }

/* OPTION B: White logo */
/* .mobile-logo-light { display: block !important; }
.mobile-logo-dark { display: none !important; } */



/* Ticker */
.mobile-menu-ticker {
	overflow: hidden;
	white-space: nowrap;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

body:not(.tt-lightmode-on) .mobile-menu-ticker {
	border-top-color: rgba(0, 0, 0, 0.5);
	border-bottom-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-ticker-track {
	display: inline-flex;
	animation: tickerScroll 20s linear infinite;
}

.mobile-menu-ticker-track span {
	font-family: 'Anton', sans-serif;
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.5);
	white-space: nowrap;
}

body:not(.tt-lightmode-on) .mobile-menu-ticker-track span {
	color: rgba(0, 0, 0, 0.5);
}

.ticker-arrow {
	width: 14px;
	height: 14px;
	fill: currentColor;
	vertical-align: middle;
	display: inline-block;
	margin: 0 4px;
}

@keyframes tickerScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Socials */
.mobile-menu-socials {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 24px 20px;
}

.mobile-menu-socials a {
	font-family: 'Anton', sans-serif;
	font-size: 0.85em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

body:not(.tt-lightmode-on) .mobile-menu-socials a {
	color: #000;
}

.mobile-menu-socials a:hover {
	color: #888;
}

/* ===== Responsive Toggle ===== */
@media (min-width: 992px) {
	#tt-m-menu-toggle-btn-wrap {
		display: none;
	}
}

@media (max-width: 991px) {
	.tt-split-menu {
		display: none;
	}

	.hamburger {
		display: flex;
		padding-right: 20px;
	}

	#tt-header .tt-header-col-left {
		display: none;
	}

	#tt-header .tt-header-col-center {
		flex: 1;
		justify-content: flex-start;
	}

	#tt-header .tt-header-col-right {
		flex: 0 0 auto;
		justify-content: flex-start !important;
	    gap: 20px !important;
        
	}


	/* #tt-header .tt-header-inner {
		padding: 0 20px;
	} */

	#tt-header .tt-logo img {
		width: 130px;
		padding: 1em;
        max-height: none;
	}
}

@media (max-width: 991px) {
	#tt-header .tt-header-col-left {
		display: none;
	}

@media (max-width: 991px) {
	#tt-header .tt-header-col-center {
		flex: 1 !important;
		justify-content: flex-start !important;
		display: flex !important;
	}

	#tt-header .tt-header-col-center .tt-logo {
		margin: 0 !important;
	}
}

	#tt-header .tt-logo img {
		width: 130px;
		padding: .2em 0;
		max-height: none;
	}
}

/* ===========================================================
CLOCK STYLING FOR TEAM MEMBERS 
=========================================================== */
/* Clock Component */
.clock-container {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.clock-wrapper {
	text-align: right;
}

.clock-display {
	font-family: 'Anton', sans-serif;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: #000;
	line-height: 1.2;
}

.clock-label {
	font-family: 'Anton', sans-serif;
	font-size: 9px;
	letter-spacing: 1px;
	color: #000;
	opacity: 0.6;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.clock-container {
		display: none;
	}
}