:root {
	--green-color: #22c55e;
	--blue-color: #3b82f6;
	--green-color2: #86ffb2;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0; 
	font-family: Montserrat,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
	overflow:auto;
	background-color:rgba(1, 40, 16, 0.67);
}

.no-scroll {
  overflow: hidden;
  /* Optional: Prevents layout jump when the scrollbar disappears */
  padding-right: 17px;
}

#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; 
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
	position: relative;
	width: 100%;
	height: 100%;
	border: 0px solid black;
}

.page-content {
	position: relative;
	width: 100%;
	max-width: 2500px;
	margin: 0 auto;
	height:100vh;
	padding-top:200px;
}

.top-div {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(to left, var(--blue-color), var(--green-color2));
	min-height: 136px; /* Prevents jumping on load */
}

.top-container {
	display: flex; 
	width: 100%;
	max-width: 2500px;
	margin: 0 auto;
	border: 0px solid black;
	min-height: 136px; /* Prevents text jumping on load */
	position: relative; /* Ensures absolute children don't affect height calculation */
}

.top-con-left-side {
	flex: 1; 
	display:flex;
	width: 100%;
	align-items:center;
	justify-content: flex-start;		
}

.top-logo {
	width: 60%; 
	min-width:153%;
	max-height: 100%;
	object-fit: contain;
	padding: 20px;
}

.top-con-right-side {
	flex: 1; 
	display: flex;
	padding: 0 20px 0 0;
	align-items: center;
	justify-content: flex-end; 
	width: 100%;
}

.desktop-menu-container {
	display: none; 
	height: 100%;
	border: 0px solid black;
	min-height: 96px; /* Ensures consistent height */
	align-items: center; /* Keeps text vertically centered */
}


.desktop-menu-item {
  display: flex; 
  align-items: center;
  justify-content: flex-start;
  border:0px solid black;	
  color: white;
  font-weight: bold;
  font-size: 31px;
  padding: 0 16px; 
}

.desktop-menu-item a {
	color: white;
  text-decoration: none;
}

.mobile-menu-container {
	display: flex;
}

.topAddress {
	display: flex; 
	position:absolute;
	bottom:-150px;
	right:18px;
	width: 100%;
	align-items:center;
	justify-content: center;
	padding-bottom:10px;
	color:white;
	font-size:clamp(2.7em, 1.4vw, 18px);
	text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.topAddress.menu-open {
	opacity: 0;
	visibility: hidden;
}

.topAddressInner{
	background-color: rgba(0, 0, 0, 0.68);
	border-radius: 19px;
	padding: 7px;
	cursor: pointer;
}

.hamburger-stripes-container
{
	display: flex; 
	flex-direction: column; 
	height: 6em;
	width: 7em;
}

.stripe-on {
	flex: 1; 
	background-color: white;
}

.stripe-off {
	flex: 1;
}

.bottom-div {
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 142px;
	background-image: linear-gradient(to left, var(--blue-color), var(--green-color2));
}

.bottom-container {
	display: flex; 
	width: 100%;
	max-width: 2500px;
	margin: 0 auto;
	border: 0px solid black;
}

.bottom-con-left-side {
	flex: 1; 
	display:flex;
	width: 100%;
	align-items:center;
	justify-content: flex-start;		
}

.bottom-logo {
	width: 37%; 
	min-width: 334px;
	max-height: 100%;
	object-fit: contain;
	padding: 20px 20px 0px 20px;
}

.bottom-con-right-side {
	flex: 1; 
	display:flex;
	padding: 20px;
	align-items:center;
	justify-content:flex-end;
}

.bottom-logo-container {
	display:flex;
	flex-direction: column; 
}

img, .language {
	width: 48px;
	height: auto;
}

/* 
.social-links {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9;
  background-color:rgb(190, 255, 238);
  border-radius: 10px;
  padding:10px;
  outline:3px solid #052B13;
}
 */
 
.social-links {
	position: fixed;
	left: -26px;
	top: 63%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 41px;
	z-index: 100;
	background-color: rgb(190, 255, 238);
	border-radius: 31px;
	padding: 35px 22px 35px 35px;
	outline: 9px solid #052B13;
}

.social-links img {
  width: 64px;
  height: 64px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

/* Mobile Drawer Menu */
.mobile-drawer {
		background-color:#3B82F6;
		color:white;
    position: fixed;
    top: 136px;
    left: 0;
    width: 100%; 
    height: calc(100% - 136px);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 40; 
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: flex-start;
    gap: 50px;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0); 
}

.drawer-menu-item {   
	padding: 50px 20px;
	font-size: 82px;
	color: white;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	display: block;
	flex-shrink: 0;
}



@media (min-width: 1024px) {
	.topAddress {
		bottom:-100px;
		color:white;
		font-size:clamp(18px, 1.4vw, 18px);
		justify-content: center;
	}
	.topAddressInner{
		background-color: rgba(0, 0, 0, 1);
		padding: 8px;
	}
}

/* over 1580, make address label without background and small  */
@media (min-width: 1580px) {
	.topAddress {
		bottom:0px;
		color:white;
		font-size:clamp(18px, 1.4vw, 18px);
		justify-content: center;
	}
	.topAddressInner{
		background-color: rgba(0, 0, 0, 0);
		padding: 0px;
	}
}

@media (min-width: 1024px) {
	.desktop-menu-container {
		display: flex;
		justify-content: space-evenly; 
	}
	.desktop-menu-item {
		font-size: 17px;
	}
	.top-logo {
		width:auto;
		min-width: 248px;
		max-height: 96px;
	}
	
	.top-con-left-side {
		width: auto;
	}

	
	.top-con-right-side {
		align-items:flex-end;
	}
	
	.bottom-logo {
		min-width: 225px;
	}

	.mobile-menu-container {
		display: none;
	}
	.top-div {
		height:auto;
		max-height: 136px;
		overflow: visible;
	}
	.mobile-drawer {
			display: none; 
	}
	
	.social-links {
		left: 20px;
		top: 50%;
		gap: 12px;
		border-radius: 10px;
		padding:10px;
		outline:3px solid #052B13;
	}
	
	.social-links img {
		width: 32px;
		height: 32px;
	}
	
	img, .language {
		width: 32px;
	}
	
}