/* Base Styles & Variables */
:root {
	--primary: #4361ee;
	--secondary: #3f37c9;
	--accent: #4895ef;
	--dark: #1a1a2e;
	--light: #f8f9fa;
	--text: #333333;
	--white: #ffffff;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--radius: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	overflow-y: scroll;
	min-width: 339px;
	font-family: 'Trebuchet MS';
	line-height: 1.6;
	color: var(--text);
	background-color: #fffef6;
}

/* Header & Navigation */
header {
	background-color: var(--white);
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.header-2-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

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

.logo {
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo i {
	margin-right: 10px;
	color: var(--accent);
}

/* Hamburger Menu */
.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark);
	cursor: pointer;
	transition: var(--transition);
}

.hamburger:hover {
	color: var(--primary);
}

/* Navigation Links */
.nav-links {
	display: flex;
	list-style: none;
	margin: 0 auto;
}

.nav-links li {
	margin-left: 30px;
	position: relative;
}

.nav-links a {
	color: var(--light);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	padding: 5px 0;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	transition: var(--transition);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-links .active a {
	color: var(--primary);
}

.nav-links .active a::after {
	width: 100%;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* Footer */
footer {
	background: var(--dark);
	color: var(--white);
	background-color: #fffef6;
}

.header-footer {
	max-width: 600px;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.hamburger {
		display: block;
		margin-left: auto;
		height: 60px;
	}

	.header-footer {
		max-width: 300px;
	}

	.nav-links {
		position: fixed;
		top: 107px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 200px);
		background-color: #480048;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 40px 0;
		transition: var(--transition);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-links.active {
		left: 0;
	}

	.nav-links li {
		margin: 15px 0;
	}

	.nav-links a {
		font-size: 1.2rem;
		line-height: 1;
		display: inline-flex;
		align-items: center;
		height: 100%;
	}

	.nav-container {
		top: 40px;
		right: 29px;
		position: absolute;
	}

	.header-2-container {
		padding-bottom: 25px;
	}

	.logo {
		pointer-events: none;
	}
}

/* Animations */
.fade-in {
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.6s;
}

.nav-links {
	display: flex;
	justify-content: start;
	overflow: hidden;
	background-color: #480048;
}

.topnav-bottom-line {
	background-color: #480048;
	height: 10px;
}

.nav-links a {
	float: left;
	color: #f2f2f2;
	text-align: center;
	padding: 6px 16px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.nav-links a:hover {
	background-color: #fffef6;
	color: black;
}

.nav-links a.active {
	background-color: #fffef6;
	color: black;
}

a.customLink:link {
	color: #7979f2;
}

#termsAndConditions {
	color: black;
	position: absolute;
	display: block;
	padding-right: 20px;
	padding-top: 20px;
	width: 100%;
	text-align: end;
}

a.customLink:visited {
	color: #88408c;
}

.no-click-visuals {
	transition: none !important;
	box-shadow: none !important;
	background: none !important;


	outline: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	/* removes mobile tap highlight */
}

.no-click-visuals:focus,
.no-click-visuals:active {
	outline: none;
	background: none;
}

#message {
	margin-top: 1em;
	height: 25px;
	color: green;
	font-weight: bold;
	text-align: center;
	margin-top: 13px;
	width: 100%;
}

.nice-button {
	display: block;
	margin: 0 auto;
	padding: 15px 30px;
	font-size: 1.2rem;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #9bf6e1, #7979f2);
	color: #fffef6;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}

.nice-button:hover {
	transform: scale(1.03);
	cursor: pointer;
}

.nice-button:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

#body-content {
	color: #4d404a;
}