@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

/* Draggable header (used across pages) */
.draggable-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3000;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.header-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: 100%;
	margin: 0 auto;
	gap: 0;
	background: #ffffff;
	border-radius: 50px;
	padding: 20px 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 90%;
}

.header-left {
	flex: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
	align-items: center;
}

.header-menu li {
	margin: 0;
	padding: 0;
}

.menu-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: black;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: opacity 0.3s ease;
	cursor: pointer;
	mix-blend-mode: normal;
	white-space: nowrap;
   font-family: "Montserrat", sans-serif;
}

.menu-link:hover {
	opacity: 0.7;
}

.menu-icon {
	font-size: 16px;
}

.header-center {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 60px;
}

.site-logo {
	color: #000;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: opacity 0.3s ease;
	mix-blend-mode: normal;
	white-space: nowrap;
}

.site-logo:hover {
	opacity: 0.7;
}

.site-logo img {
	max-height: 60px;
	width: auto;
}

.header-right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-info {
	display: none;
	align-items: center;
	gap: 10px;
}

.location-time {
	color: #000;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	mix-blend-mode: difference;
}

.time-display {
	color: #000;
	font-weight: 600;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	background: transparent;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	border-radius: 4px;
	transition: opacity 0.3s ease;
	cursor: pointer;
	border: none;
	mix-blend-mode: normal;
	white-space: nowrap;
}

.contact-btn:hover {
	opacity: 0.6;
}

/* Hamburger Menu Button - Hidden by default */
.header-hamburger {
	display: none;
	order: -1;
}

.hamburger-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.hamburger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #000;
	transition: all 0.3s ease;
	transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}


/* Mobile Menu Drawer */
.mobile-menu-drawer {
	position: fixed;
	top: -20px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 3200;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.mobile-menu-drawer.active {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu-content {
	position: fixed;
	top: -20px;
	padding: 10px;
	left: -100%;
	width: 80%;
	max-width: 300px;
	height: 100vh;
	background: #fff;
	z-index: 3201;
	transition: left 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-menu-drawer.active .mobile-menu-content {
	left: 0;
}

.mobile-menu-close {
	align-self: flex-end;
	background: none;
	border: none;
	cursor: pointer;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}

.mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-menu-section {
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-section:last-child {
	border-bottom: none;
}

.mobile-menu-section .mobile-menu {
	margin: 0;
	padding: 0;
}

.mobile-menu li {
	margin: 0;
	padding: 0;
}

.mobile-menu .mobile-menu-link{
	font-size: 18px;
	text-decoration: none;
	color: black;
}

.mobile-menu .menu-link {
	display: block;
	padding: 16px 20px;
	border-bottom: 1px solid #f0f0f0;
	color: #000;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s ease;
	mix-blend-mode: normal;
}

.mobile-menu .menu-link:hover {
	background: #f5f5f5;
	opacity: 1;
}

.mobile-contact-btn {
	display: block;
	padding: 16px 20px;
	margin: 16px;
	background: #000;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	border-radius: 4px;
	transition: background 0.3s ease;
	border: none;
}

.mobile-contact-btn:hover {
	background: #555;
}

@media (max-width: 1024px) {
	.draggable-header {
		padding: 15px 30px;
	}

	.header-menu {
		gap: 30px;
	}

	.header-right {
		gap: 20px;
	}

	.location-time {
		font-size: 12px;
	}

	.site-logo {
		font-size: 18px;
		display: none;
	}
}

@media (max-width: 768px) {
	.draggable-header {
		padding: 12px 20px;
	}

	.header-wrapper {
		gap: 15px;
	}

	.header-menu {
		gap: 20px;
	}

	.header-right {
		display: none !important;
		gap: 20px;
	}

	.menu-link {
		font-size: 12px;
	}

	.contact-btn {
		padding: 8px 20px;
		font-size: 12px;
	}

	/* Hide desktop menu and show hamburger on mobile */
	.header-left {
		display: none !important;
	}

	.header-hamburger {
		display: flex !important;
		align-items: center;
	}

	.mobile-menu-drawer {
		display: block !important;
	}

	.header-info{
		display: none;
	}

	.custom-logo-link{
		margin-left: 20px;
	}

	.mobile-menu {
		padding: 16px;
		gap: 10px;
	}
}

@media (max-width: 375px) {
	.header-info {
		display: none;
	}
}
