:root {
	--secondary-color: #5bbdee;
	--primary-color: #dfeaf3;

	--font-color: #281a15;
	--header-color: #f8feff;

	--border-color: #b0ddbd;
	--header-border-color: #2c3e50;
	--transition: all 0.3s ease;
	--primary-color-full: rgb(212, 229, 246);
	--main-border: 2px solid var(--border-color);
	--card-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background-color: var(--secondary-color);
}

body {
	font-family: 'Georgia', serif;
	line-height: 1.6;
	color: var(--font-color);
	background-color: var(--secondary-color);
	overflow-x: hidden;
	overflow-y: scroll;
}

.hover-icon {
    cursor: pointer;               /* optional: shows pointer on hover */
}

.hover-icon:hover {
    color: #b0ddbd;                /* color on mouseover */
}

h1,
h2,
h3,
h4 {
	font-family: 'Georgia', serif;
	font-weight: 600;
	line-height: 1.2;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* ===========================
   NAVIGATION STYLES
   =========================== */

/* Desktop Navigation */
.nav-links {
	display: flex;
	gap: 5px;
	list-style: none;
}

.nav-links a {
	border-radius: 10px;
	text-decoration: none;
	color: #5bbdee;
	font-size: 17px;
	padding: 15px;
	transition: var(--transition);
	position: relative;
}

.nav-links a:hover {
	background: #dfeaf3;
	color: var(--font-color);
}

/* Active navigation states */
.nav-links li a.active {
	color: var(--secondary-color);
	background: #b0ddbd;
	color: var(--font-color);
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1002;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: 1px solid var(--header-border-color);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.8),
		0 3px 9px rgba(0, 0, 0, 0.10),
		0 6px 20px rgba(0, 0, 0, 0.06);
}

.mobile-menu-btn__inner {
	position: relative;
	width: 20px;
	height: 16px;
}

.mobile-menu-btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--header-border-color);
	border-radius: 1px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-btn span:nth-child(1) {
	top: 0;
}

.mobile-menu-btn span:nth-child(2) {
	top: 7px;
}

.mobile-menu-btn span:nth-child(3) {
	top: 14px;
}

/* Hamburger active state */
.mobile-menu-btn.active {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}

.mobile-menu-btn.active span {
	background-color: white;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 7px;
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 7px;
}

/* ===========================
   RESPONSIVE NAVIGATION
   =========================== */
@media (max-width: 826px) {

	/* Mobile Navigation */
	.mobile-menu-btn {
		display: flex;
	}

	.nav-links {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		gap: 0px;
		width: 100%;
		height: 100vh;
		background: #f8feff;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 100px 0 0 0;
		margin: 0;
		transition: transform 0.3s ease-in-out;
		z-index: 1000;
		transform: translateX(-100%);
		-webkit-overflow-scrolling: touch;
	}

	.nav-links.active {
		transform: translateX(0);
		display: flex;
	}

	.nav-links a {
		all: unset;
		display: block;
		width: 100%;
		flex: 0 0 auto;
		margin: 0;
		padding: 20px 26px;
		font-family: 'Georgia', serif;
		font-size: 1.2rem;
		background: transparent;
		color: var(--secondary-color);
		text-align: left;
		text-decoration: none;
		cursor: pointer;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		transition: background-color 0.2s ease;
	}

	.nav-links a:hover {
		background: rgba(52, 152, 219, 0.05);
	}

	.nav-links a:after {
		display: none;
	}

	.nav-links li a.active {
		background: #dfeaf3;
		color: var(--font-color);
		font-weight: 600;
		border-left: 5px solid var(--secondary-color);
		padding: 20px 21px;
	}

	.nav-container {
		padding-right: 60px;
	}

	body.menu-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
	}
}

/* ===========================
   HEADER
   =========================== */
header {
	width: 100%;
	position: relative;
	z-index: 1000;
	padding: 20px 0;
	background-color: var(--header-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logo {
	font-family: 'Georgia', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--header-border-color);
	text-decoration: none;
	z-index: 1002;
}

.logo span {
	color: var(--secondary-color);
}

/* ===========================
   BUTTONS
   =========================== */
.cta-button {
	background: linear-gradient(135deg, #b0ddbd, #09ffe0);
	color: #281a15;
	border: none;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
	text-decoration: none;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}


/* ===========================
   COMMON SECTION STYLES
   =========================== */
section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.custom-link {
	color: #5bbdee;
	display: inline-block;
	/* or block */
	max-width: 100%;
	/* don't exceed parent */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.custom-link:hover {
	color: #09ffe0;
}

.custom-link:active {
	color: #09ffe0;
}

.custom-link-no-overflow {
	color: #5bbdee;
	display: inline-block;
}

.custom-link-no-overflow:hover {
	color: #09ffe0;
}

.custom-link-no-overflow:active {
	color: #09ffe0;
}

.top-content-section {
	background-color: var(--secondary-color);
}

/* ===========================
   FOOTER
   =========================== */
footer {
	padding-bottom: 30px;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	font-size: 0.9rem;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	clip-path: inset(50%) !important;
}