@font-face {
	font-family: "PlusJakartaSans";
	src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Sen";
	src: url("../fonts/Sen-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Science Gothic";
	src: url("../fonts/ScienceGothic-VariableFont_CTRS,slnt,wdth,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}


:root {
	--font-primary: "PlusJakartaSans", sans-serif;
	--font-secondary: "Sen", sans-serif;
	--font-heading: var(--font-primary);
	--font-body: var(--font-secondary);
	--font-logo: "Science Gothic", sans-serif;

	--primary: #09B36F;
	--primary-dark: #000000;
	--primary-light: #E2F6EE;
	--background: #E2F6EE;
	--white: #ffffff;
	--text-dark: #000000;

	--border: #C1ECDC;
	
	
	--success: #1f9d55;
	--warning: #f5a623;
	--danger: #d64545;
	--radius: 18px;
	--shadow: 0 12px 35px rgba(15, 36, 48, 0.1);
	--shadow-hover: 0 18px 45px rgba(15, 36, 48, 0.16);
}

/* ==========================================================================
   Font Family Classes
   ========================================================================== */
.font-heading { font-family: var(--font-heading) !important; }
.font-body    { font-family: var(--font-body) !important; }
.font-jakarta { font-family: "PlusJakartaSans", sans-serif !important; }
.font-sen     { font-family: "Sen", sans-serif !important; }

/* ==========================================================================
   Font Weight Classes (Numeric & Descriptive)
   ========================================================================== */
.fw-100, .font-thin        { font-weight: 100 !important; }
.fw-200, .font-extralight  { font-weight: 200 !important; }
.fw-300, .font-light       { font-weight: 300 !important; }
.fw-400, .font-regular, .fw-normal { font-weight: 400 !important; }
.fw-500, .font-medium      { font-weight: 500 !important; }
.fw-600, .font-semibold    { font-weight: 600 !important; }
.fw-700, .font-bold        { font-weight: 700 !important; }
.fw-800, .font-extrabold   { font-weight: 800 !important; }
.fw-900, .font-black       { font-weight: 900 !important; }

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--background);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	font-family: var(--font-body);
	font-weight: 600;
	white-space: nowrap;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
	border-radius: 8px;
	padding: 12px 22px;
	font-size: 15px;
}

.btn-primary:hover {
	opacity: 0.92;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid #ececec;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.logo-mascot {
	width: 42px;
	height: auto;
	object-fit: contain;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.logo-text strong {
	font-family: var(--font-logo);
	font-size: 25px;
	font-weight: 800;
	font-style: normal;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--primary);
	text-transform: uppercase;
}

.logo-text small {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 100%;
	letter-spacing: 0;
	color: #555;
	margin-top: 2px;
}

.site-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	gap: 28px;
}

.site-menu a {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 100%;
	letter-spacing: 0;
	color: #333;
	white-space: nowrap;
}

.site-menu a:hover {
	color: var(--primary);
}

.site-menu a.active {
	font-family: var(--font-primary);
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--primary);
}

.nav-item.has-submenu {
	position: relative;
	display: flex;
	align-items: center;
	align-self: stretch;
}

.submenu-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	padding: 0;
	height: 100%;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	color: #333;
	white-space: nowrap;
}

.submenu-trigger i {
	font-size: 11px;
	transition: transform 0.2s ease;
}

.submenu-trigger:hover,
.submenu-trigger.active,
.nav-item.has-submenu.is-active .submenu-trigger {
	color: var(--primary);
}

.submenu-trigger.active,
.nav-item.has-submenu.is-active .submenu-trigger {
	font-weight: 700;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	padding: 12px 0 10px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--border, #C1ECDC);
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(15, 36, 48, 0.1);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.15s ease, visibility 0.15s ease;
	z-index: 130;
}

/* Invisible hover bridge so the pointer can reach the list without closing it */
.submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	height: 20px;
}

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu,
.nav-item.has-submenu.is-open .submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nav-item.has-submenu:hover .submenu-trigger i,
.nav-item.has-submenu.is-open .submenu-trigger i {
	transform: rotate(180deg);
}

.submenu a {
	display: block;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
}

.submenu a:hover,
.submenu a.active {
	background: var(--primary-light, #E2F6EE);
	color: var(--primary);
	font-weight: 600;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	background: #f4f4f4;
	border-radius: 999px;
	padding: 3px;
}

.lang-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 26px;
	padding: 0 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #555;
}

.lang-option.active {
	background: var(--primary);
	color: var(--white);
}

.mobile-menu-btn {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 10px 8px;
	position: relative;
	z-index: 120;
}

.mobile-menu-btn span {
	display: block;
	height: 2px;
	background: #222;
	margin: 5px 0;
	border-radius: 2px;
	transition: 0.25s ease;
}

.drawer-head,
.drawer-cta,
.menu-overlay {
	display: none;
}

.drawer-close {
	display: none;
	width: 40px;
	height: 40px;
	border: 0;
	background: #f4f4f4;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	flex: 0 0 40px;
	padding: 0;
}

.drawer-close span {
	position: absolute;
	left: 11px;
	right: 11px;
	top: 50%;
	height: 2px;
	background: #222;
	border-radius: 2px;
}

.drawer-close span:first-child {
	transform: translateY(-50%) rotate(45deg);
}

.drawer-close span:last-child {
	transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 1200px) {
	.mobile-menu-btn {
		display: block;
	}

	.header-actions {
		display: none;
	}

	.header-inner {
		min-height: 76px;
		gap: 12px;
	}

	.menu-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease;
		z-index: 110;
	}

	.site-menu {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 86vw);
		margin: 0;
		padding: 24px 20px 32px;
		background: var(--white);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 120;
		overflow-y: auto;
	}

	.drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 18px;
		padding-bottom: 14px;
		border-bottom: 1px solid #ececec;
	}

	.drawer-logo {
		min-width: 0;
		flex: 1 1 auto;
	}

	.drawer-logo .logo-mascot {
		width: 36px;
	}

	.drawer-logo .logo-text strong {
		font-size: 22px;
	}

	.drawer-logo .logo-text small {
		font-size: 11px;
	}

	.drawer-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.site-menu > a:not(.drawer-cta):not(.drawer-logo) {
		width: 100%;
		padding: 14px 4px;
		border-bottom: 1px solid #f2f2f2;
		font-size: 16px;
	}

	.nav-item.has-submenu {
		display: block;
		width: 100%;
		align-self: auto;
		border-bottom: 1px solid #f2f2f2;
	}

	.submenu-trigger {
		width: 100%;
		height: auto;
		justify-content: space-between;
		padding: 14px 4px;
		font-size: 16px;
	}

	/* Touch devices keep :hover after tap — rotate only when truly open */
	.nav-item.has-submenu:hover .submenu-trigger i {
		transform: none;
	}

	.nav-item.has-submenu.is-open .submenu-trigger i {
		transform: rotate(180deg);
	}

	.submenu {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		min-width: 0;
		width: 100%;
		padding: 0 0 10px;
		margin: 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: #f8faf9;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		z-index: auto;
	}

	.submenu::before {
		display: none;
	}

	.nav-item.has-submenu.is-open .submenu {
		display: block;
		transform: none;
	}

	.site-menu .submenu a {
		display: block;
		width: 100%;
		padding: 11px 12px 11px 18px;
		border-bottom: 1px solid #eef2f0;
		font-size: 15px;
		font-weight: 500;
		white-space: normal;
		line-height: 1.35;
	}

	.site-menu .submenu a:last-child {
		border-bottom: 0;
	}

	.site-menu .submenu a:hover,
	.site-menu .submenu a.active {
		background: transparent;
		color: var(--primary);
		font-weight: 600;
	}

	.drawer-cta {
		display: inline-flex;
		width: 100%;
		margin-top: 24px;
		padding: 14px 18px;
		border-radius: 10px;
		font-size: 15px;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	body.mobile-menu-open .menu-overlay {
		opacity: 1;
		visibility: visible;
	}

	body.mobile-menu-open .site-menu {
		transform: translateX(0);
	}

	body.mobile-menu-open .mobile-menu-btn {
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 480px) {
	.container {
		width: calc(100% - 32px);
	}

	.logo-mascot {
		width: 36px;
	}

	.logo-text strong {
		font-size: 22px;
	}

	.logo-text small {
		font-size: 11px;
	}
}
