:root {
	--primary-color: #ff8c42;
	--secondary-color: #4ecdc4;
	--accent-color: #ffd166;
	--dark-accent: #06668d;
	--earth-tone: #95b46a;
	--background: #fef9f3;
	--text-dark: #2d3748;
	--text-light: #718096;
	--white: #ffffff;
	--shadow: rgba(0, 0, 0, 0.08);
	--shadow-hover: rgba(0, 0, 0, 0.12);
	--shadow-deep: rgba(0, 0, 0, 0.15);
}

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

body {
	font-family:
		"Quicksand",
		"Poppins",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	background-color: var(--background);
	color: var(--text-dark);
	line-height: 1.7;
	overflow-x: hidden;
}

.navbar {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	padding: 1rem 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.8px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0.5rem 1rem;
	border-radius: 12px;
}

.nav-brand:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.05);
}

.quokka-emoji {
	font-size: 2.4rem;
	animation: bounce 2s ease-in-out infinite;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-text {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.8)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	font-family: "Poppins", sans-serif;
	letter-spacing: -0.3px;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 0.8rem;
}

.nav-links a {
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.6rem 1rem;
	font-size: 0.93rem;
	letter-spacing: 0.4px;
	border-radius: 8px;
	text-transform: capitalize;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 50%;
}

.nav-links a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
	opacity: 1;
}

.nav-links a.active {
	background: rgba(255, 255, 255, 0.25);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero {
	background: linear-gradient(
		135deg,
		var(--secondary-color) 0%,
		var(--dark-accent) 100%
	);
	padding: 7rem 2rem 5rem;
	position: relative;
	color: var(--white);
	text-align: center;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	font-family: "Poppins", sans-serif;
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.hero-description {
	font-size: 1.15rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.attendance-card {
	margin: 2rem auto 2.5rem;
	width: 80vw;
	max-width: 960px;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(6, 102, 141, 0.9),
		rgba(78, 205, 196, 0.9)
	);
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	text-align: left;
}

.attendance-text h2 {
	color: var(--white);
	margin: 0.3rem 0 0.6rem;
	font-size: 1.8rem;
}

.attendance-kicker {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.3rem;
	font-weight: 700;
}

.attendance-note {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.attendance-qr {
	background: var(--white);
	padding: 0.75rem;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.attendance-qr img {
	display: block;
	border-radius: 10px;
}

.attendance-qr:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.btn {
	padding: 1rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	border: none;
	cursor: pointer;
	letter-spacing: 0.3px;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: 0 6px 20px rgba(255, 140, 66, 0.25);
}

.btn-primary:hover {
	background-color: #ff7629;
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(255, 140, 66, 0.35);
}

.btn-secondary {
	background-color: var(--white);
	color: var(--primary-color);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
	background-color: var(--accent-color);
	color: var(--text-dark);
	transform: translateY(-4px);
}

.hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.hero-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 60px;
	fill: var(--background);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

section {
	padding: 4rem 0;
}

section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--dark-accent);
	font-family: "Poppins", sans-serif;
}

.course-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

@media (min-width: 1024px) {
	.course-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.course-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px var(--shadow);
	transition: all 0.3s ease;
	text-align: center;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 30px var(--shadow-hover);
}

.card-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.course-card h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.course-card p {
	color: var(--text-light);
	font-size: 1rem;
}

.info-section {
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--primary-color) 100%
	);
	padding: 4rem 2rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.info-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
	color: var(--dark-accent);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.info-card p {
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.info-note {
	color: var(--text-light);
	font-style: italic;
	margin-top: 1rem;
}

.btn-link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-link:hover {
	color: var(--dark-accent);
	transform: translateX(5px);
}

.links-section {
	background: var(--white);
}

.links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.link-category {
	background: var(--background);
	padding: 2rem;
	border-radius: 15px;
	border-left: 5px solid var(--secondary-color);
	box-shadow: 0 2px 10px var(--shadow);
}

.link-category h3 {
	color: var(--dark-accent);
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.link-category ul {
	list-style: none;
}

.link-category ul li {
	margin-bottom: 0.8rem;
}

.link-category ul li a {
	color: var(--text-dark);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 1.5rem;
}

.link-category ul li a::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	transition: transform 0.3s ease;
}

.link-category ul li a:hover {
	color: var(--primary-color);
	transform: translateX(5px);
}

.contact-section {
	background: var(--background);
	color: var(--text-dark);
}

.contact-section h2 {
	color: var(--dark-accent);
}

.contact-intro {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.contact-card {
	background: var(--white);
	color: var(--text-dark);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
	color: var(--dark-accent);
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.contact-card p {
	margin-bottom: 0.8rem;
}

.contact-card a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: var(--dark-accent);
}

.footer {
	background: linear-gradient(
		135deg,
		var(--dark-accent) 0%,
		var(--primary-color) 100%
	);
	color: var(--white);
	position: relative;
	padding-top: 60px;
}

.footer-wave {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.footer-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 60px;
	fill: var(--background);
}

.footer-content {
	text-align: center;
	padding: 2rem;
}

.footer-content p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.page-header {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	padding: 4rem 2rem;
	text-align: center;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.page-header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.page-header p {
	font-size: 1.2rem;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.weekly-schedule {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.day-card {
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

.day-card.active {
	background: linear-gradient(
		135deg,
		var(--secondary-color),
		var(--primary-color)
	);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.day-card.active:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.day-card.inactive {
	background: var(--background);
	color: var(--text-light);
	border: 3px dashed #e2e8f0;
}

.day-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.day-icon {
	font-size: 2rem;
}

.day-header h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0;
}

.time-info {
	margin-top: 0.5rem;
}

.time-info .time {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.card,
.schedule-card,
.term-card,
.profile-card,
.contact-info-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--shadow);
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.card:hover,
.schedule-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px var(--shadow-hover);
}

.profiles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.profile-card {
	border-top: 4px solid var(--primary-color);
}

.profile-avatar {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
}

.profile-content {
	padding: 1.8rem;
}

.profile-content h3 {
	color: var(--dark-accent);
	margin-bottom: 0.3rem;
}

.profile-role {
	color: var(--primary-color);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 1rem;
}

.skill-tag {
	background: #f0f0f0;
	color: var(--text-dark);
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	display: inline-block;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.resource-card {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border-top: 4px solid var(--primary-color);
	transition: all 0.3s ease;
}

.resource-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(78, 205, 196, 0.15);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.submit-btn {
	padding: 1rem;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
	width: 100%;
	transition: all 0.2s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

@media (max-width: 768px) {
	.nav-links {
		gap: 1rem;
		font-size: 0.9rem;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero-subtitle {
		font-size: 1.4rem;
	}
	section h2 {
		font-size: 2rem;
	}
	.course-grid,
	.info-grid,
	.contact-grid,
	.profiles-grid {
		grid-template-columns: 1fr;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.btn {
		width: 100%;
		max-width: 300px;
	}
	.attendance-card {
		width: 100%;
		grid-template-columns: 1fr;
		text-align: center;
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}
	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}
	.hero {
		padding: 4rem 1rem 3rem;
	}
	.hero h1 {
		font-size: 2rem;
	}
}
