/* Hide default Hello Elementor Header and Footer */
header.site-header, footer.site-footer {
	display: none !important;
}

/* Custom Header Styles */
.custom-black-header-573b454e {
	background-color: #000000;
	color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.custom-header-container-573b454e {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.custom-header-logo-573b454e {
	max-height: 45px;
	width: auto;
	display: block;
}

/* Hamburger Menu Toggle */
.hamburger-menu-toggle-573b454e {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10001;
}

.hamburger-menu-toggle-573b454e span {
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	border-radius: 2px;
	transition: all 0.3s linear;
	position: relative;
	transform-origin: 1px;
}

/* Toggle Animation */
.hamburger-menu-toggle-573b454e.is-active span:first-child {
	transform: rotate(45deg);
}
.hamburger-menu-toggle-573b454e.is-active span:nth-child(2) {
	opacity: 0;
	transform: translateX(20px);
}
.hamburger-menu-toggle-573b454e.is-active span:nth-child(3) {
	transform: rotate(-45deg);
}

/* WordPress Menu Styles for Header */
.header-menu-list-573b454e {
	display: flex;
	gap: 25px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-menu-list-573b454e li {
	position: relative;
}

.header-menu-list-573b454e a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s ease;
	display: block;
	padding: 10px 0;
}

.header-menu-list-573b454e a:hover,
.header-menu-list-573b454e li.current-menu-item > a {
	color: #aaaaaa;
}

/* Submenu Styles */
.header-menu-list-573b454e ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #111111;
	min-width: 220px;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	border-radius: 4px;
	z-index: 10000;
}

.header-menu-list-573b454e li:hover > ul.sub-menu {
	display: block;
}

.header-menu-list-573b454e ul.sub-menu li {
	width: 100%;
}

.header-menu-list-573b454e ul.sub-menu a {
	padding: 10px 20px;
	font-size: 14px;
}

.header-menu-list-573b454e ul.sub-menu a:hover {
	background-color: #222222;
	color: #ffffff;
}

/* Custom Footer Styles */
.custom-black-footer-573b454e {
	background-color: #000000;
	color: #ffffff;
	padding: 50px 20px 20px;
}

.custom-footer-container-573b454e {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.custom-footer-content-573b454e {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid #333333;
	padding-bottom: 30px;
}

.custom-footer-brand-573b454e {
	max-width: 300px;
}

.custom-footer-logo-573b454e {
	max-height: 50px;
	margin-bottom: 15px;
}

.custom-footer-brand-573b454e p {
	color: #cccccc;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.footer-menu-list-573b454e {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu-list-573b454e a {
	color: #cccccc;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s ease;
}

.footer-menu-list-573b454e a:hover {
	color: #ffffff;
}

.custom-footer-bottom-573b454e {
	text-align: center;
	color: #888888;
	font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.hamburger-menu-toggle-573b454e {
		display: flex;
	}

	.custom-header-nav-573b454e {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #000000;
		padding: 20px;
		box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	}

	.custom-header-nav-573b454e.is-active {
		display: block;
	}

	.header-menu-list-573b454e {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		width: 100%;
	}

	.header-menu-list-573b454e li {
		width: 100%;
	}

	.header-menu-list-573b454e a {
		padding: 10px 0;
		width: 100%;
		border-bottom: 1px solid #222222;
	}

	.header-menu-list-573b454e ul.sub-menu {
		position: static;
		box-shadow: none;
		background-color: transparent;
		padding: 0 0 0 15px;
		display: none;
	}

	/* Toggle submenus on click for mobile */
	.header-menu-list-573b454e li.is-active > ul.sub-menu {
		display: block;
	}

	/* Disable hover to open submenu on mobile, require click */
	.header-menu-list-573b454e li:hover > ul.sub-menu {
		display: none;
	}
	.header-menu-list-573b454e li.is-active > ul.sub-menu {
		display: block;
	}

	.custom-footer-content-573b454e {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.custom-footer-brand-573b454e {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.footer-menu-list-573b454e {
		flex-wrap: wrap;
		justify-content: center;
	}
}
