* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-yellow: #f5b800;
	--accent-yellow: #ffcf33;
	--coral-pink: #ff6b8a;
	--teal: #20b2aa;
	--dark-teal: #008b8b;
	--light-cyan: #e0ffff;
	--text-dark: #2d3436;
	--text-gray: #636e72;
	--white: #ffffff;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--primary-yellow);
	min-height: 100vh;
	padding: 20px;
}

.page-title {
	text-align: center;
	color: #ffffff;
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: 700;
	padding: 20px 10px;
	letter-spacing: 1px;
}

.main-container {
	background-color: var(--white);
	border-radius: 20px;
	max-width: 1400px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
	flex-wrap: wrap;
	gap: 15px;
	background-color: var(--light-cyan);
	border-radius: 15px 15px 0 0;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--light-cyan);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--primary-yellow);
	border-radius: 2px;
	transition: 0.3s;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 8px 14px;
	border-radius: 20px;
	background: var(--dark-teal);
	transition: all 0.3s;
	position: relative;
	white-space: nowrap;
}

.nav-menu a:hover {
	background: var(--primary-yellow);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(245, 184, 0, 0.4);
}

.nav-menu a.active {
	background: var(--coral-pink);
	color: var(--white);
}

/* Dropdown Menu Styles */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	min-width: 180px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	padding: 10px 0;
	z-index: 1000;
	margin-top: 10px;
	list-style: none;
}

.dropdown-menu::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid var(--white);
}

.dropdown:hover .dropdown-menu {
	display: block;
	animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu a {
	display: block;
	padding: 12px 20px !important;
	color: var(--text-dark) !important;
	background: transparent !important;
	border-radius: 0 !important;
	font-size: 0.95rem !important;
	transition: all 0.3s;
	border-left: 4px solid transparent;
}

.dropdown-menu a:hover {
	transform: none !important;
	box-shadow: none !important;
}

.dropdown-fides {
	border-left: 4px solid var(--dark-teal) !important;
}

.dropdown-fides:hover {
	background: linear-gradient(90deg, rgba(0, 139, 139, 0.1) 0%, transparent 100%) !important;
	color: var(--dark-teal) !important;
}

.dropdown-ugpm {
	border-left: 4px solid var(--coral-pink) !important;
}

.dropdown-ugpm:hover {
	background: linear-gradient(90deg, rgba(255, 107, 138, 0.1) 0%, transparent 100%) !important;
	color: var(--coral-pink) !important;
}

@media (min-width: 1200px) {
	.nav-menu {
		gap: 15px;
	}
	.nav-menu a {
		font-size: 1rem;
		padding: 10px 18px;
	}
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-maria-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--primary-yellow);
	box-shadow: 0 4px 15px rgba(245, 184, 0, 0.4);
}

.signup-link {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.signup-link:hover {
	color: var(--primary-yellow);
}

.login-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--accent-yellow);
	border: none;
	padding: 10px 25px;
	border-radius: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: var(--white);
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(245, 184, 0, 0.4);
}

.login-btn svg {
	width: 24px;
	height: 24px;
}

/* Hero Section */
.hero {
	position: relative;
	padding: 40px 50px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-intro {
	text-align: center;
	margin-bottom: 40px;
}

.hero-intro-label {
	color: var(--dark-teal);
	font-weight: 600;
	letter-spacing: 4px;
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.hero-intro-title {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.hero-intro-title span {
	color: var(--primary-yellow);
}

.hero-intro-subtitle {
	color: var(--text-gray);
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* ============================================
   ACTIVITIES INTRODUCTION SECTION
   Three photos aligned horizontally
   ============================================ */
.activities-intro {
	background: linear-gradient(180deg, #f0f8f7 0%, #ffffff 100%);
	padding: 40px 0;
	margin-bottom: 30px;
	border-radius: 15px;
}

.activities-photos-row {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	flex-wrap: nowrap;
	padding: 0;
}

.activity-photo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.activity-photo-item--left,
.activity-photo-item--right {
	flex: 0 0 35%;
	max-width: 35%;
}

.activity-photo-item--middle {
	flex: 0 0 30%;
	max-width: 30%;
}

.activity-photo-frame {
	width: 100%;
	max-width: 360px;
	overflow: hidden;
	margin-bottom: 18px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.activity-photo-frame--rect {
	border-radius: 18px;
	aspect-ratio: 5 / 4;
}

.activity-photo-frame--circle {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}

.activity-photo-item--middle .activity-photo-frame {
	max-width: 300px;
}

.activity-photo-item--left .activity-photo-frame,
.activity-photo-item--right .activity-photo-frame {
	max-width: 380px;
}

.activity-photo-frame--teal {
	border: 6px solid #20b2aa;
}

.activity-photo-frame--yellow {
	border: 6px solid #f5b800;
}

.activity-photo-frame--magenta {
	border: 6px solid #e91e8c;
}

.activity-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.activity-photo-frame:hover img {
	transform: scale(1.03);
}

.activity-photo-frame:active img {
	transform: scale(1.07);
}

.activity-subtitle {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	font-style: italic;
	max-width: 260px;
}

.activity-subtitle--teal {
	color: #20b2aa;
}

.activity-subtitle--yellow {
	color: #d4a000;
}

.activity-subtitle--magenta {
	color: #e91e8c;
}

/* Responsive for Activities Section */
@media (max-width: 900px) {
	.activities-photos-row {
		gap: 15px;
	}
	.activity-photo-frame--rect {
		aspect-ratio: 4 / 3;
	}
	.activity-subtitle {
		font-size: 0.9rem;
		max-width: 220px;
	}
}

@media (max-width: 700px) {
	.activities-photos-row {
		flex-wrap: wrap;
		justify-content: center;
	}
	.activity-photo-item--left,
	.activity-photo-item--right,
	.activity-photo-item--middle {
		flex: 0 0 80%;
		max-width: 80%;
	}
	.activity-subtitle {
		font-size: 0.9rem;
		max-width: 260px;
	}
}

@media (max-width: 550px) {
	.activities-intro {
		padding: 30px 0;
	}
	.activity-photo-item--left,
	.activity-photo-item--right,
	.activity-photo-item--middle {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.activity-subtitle {
		font-size: 0.95rem;
		max-width: 260px;
	}
}

/* ============================================
   HERO CARDS CONTAINER
   ============================================ */
.hero-cards-container {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

/* Fifaninanana Section Styles */
.fifaninanana-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	background: linear-gradient(135deg, #d4f5e9 0%, #e8f5f3 50%, #d4f5e9 100%);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.fifaninanana-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.fifaninanana-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: #1a5276;
	text-align: center;
	margin-bottom: 10px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.fifaninanana-image-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	border: 4px solid #1a5276;
}

.fifaninanana-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.fifaninanana-image:hover {
	transform: scale(1.02);
}

.fifaninanana-download {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	border-left: 4px solid var(--primary-yellow);
}

.fifaninanana-download p {
	font-size: 1rem;
	color: var(--text-dark);
	line-height: 1.6;
}

.fifaninanana-download a {
	color: #c0392b;
	font-weight: 700;
	text-decoration: none;
	padding: 2px 8px;
	background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
	border-radius: 5px;
	transition: all 0.3s ease;
}

.fifaninanana-download a:hover {
	background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
	box-shadow: 0 2px 10px rgba(243, 156, 18, 0.4);
}

/* Registration Form Styles */
.fifaninanana-right {
	display: flex;
	flex-direction: column;
}

.registration-form-container {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border-top: 5px solid var(--coral-pink);
}

.registration-form-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark-teal);
	text-align: center;
	margin-bottom: 25px;
}

.registration-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.95rem;
}

.form-group input {
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	background: #f8f9fa;
}

.form-group input:focus {
	outline: none;
	border-color: var(--dark-teal);
	box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.2);
}

.form-group input:disabled {
	background: #e9ecef;
	cursor: not-allowed;
	opacity: 0.7;
}

.submit-btn {
	background: linear-gradient(135deg, var(--coral-pink) 0%, #ff8fa3 100%);
	color: white;
	border: none;
	padding: 14px 30px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 138, 0.4);
}

.submit-btn:disabled {
	background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
	cursor: not-allowed;
	opacity: 0.8;
}

.registration-notice {
	margin-top: 20px;
	padding: 15px 20px;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: white;
	text-align: center;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	animation: pulse-notice 2s infinite;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

@keyframes pulse-notice {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
	}
	50% {
		transform: scale(1.02);
		box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
	}
}

/* Responsive Fifaninanana Section */
@media (max-width: 1024px) {
	.fifaninanana-section {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px;
	}
	.fifaninanana-left {
		order: 1;
	}
	.fifaninanana-right {
		order: 2;
	}
}

@media (max-width: 768px) {
	.fifaninanana-section {
		padding: 25px;
		gap: 25px;
		border-radius: 15px;
	}
	.fifaninanana-title {
		font-size: 1.5rem;
		line-height: 1.3;
	}
	.fifaninanana-image-container {
		border-width: 3px;
		border-radius: 12px;
	}
	.fifaninanana-download {
		padding: 15px;
	}
	.fifaninanana-download p {
		font-size: 0.95rem;
	}
	.registration-form-container {
		padding: 25px;
		border-radius: 15px;
	}
	.registration-form-title {
		font-size: 1.35rem;
		margin-bottom: 20px;
	}
	.registration-form {
		gap: 15px;
	}
	.form-group input {
		padding: 11px 14px;
		font-size: 0.95rem;
	}
	.submit-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}
	.registration-notice {
		padding: 12px 15px;
		font-size: 1rem;
	}
}

@media (max-width: 600px) {
	.fifaninanana-section {
		padding: 18px;
		gap: 20px;
		border-radius: 12px;
		margin: 0 -10px;
	}
	.fifaninanana-left {
		gap: 15px;
	}
	.fifaninanana-title {
		font-size: 1.25rem;
		line-height: 1.4;
		padding: 0 5px;
	}
	.fifaninanana-image-container {
		border-width: 2px;
		border-radius: 10px;
	}
	.fifaninanana-download {
		padding: 12px;
		border-radius: 10px;
		border-left-width: 3px;
	}
	.fifaninanana-download p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	.registration-form-container {
		padding: 18px;
		border-radius: 12px;
		border-top-width: 4px;
	}
	.registration-form-title {
		font-size: 1.2rem;
		margin-bottom: 18px;
	}
	.registration-form {
		gap: 12px;
	}
	.form-group {
		gap: 4px;
	}
	.form-group label {
		font-size: 0.9rem;
	}
	.form-group input {
		padding: 10px 12px;
		font-size: 0.9rem;
		border-radius: 8px;
	}
	.submit-btn {
		padding: 11px 20px;
		font-size: 0.95rem;
		border-radius: 25px;
		margin-top: 8px;
	}
	.registration-notice {
		margin-top: 15px;
		padding: 10px 12px;
		font-size: 0.9rem;
		border-radius: 10px;
		line-height: 1.4;
	}
}

@media (max-width: 400px) {
	.fifaninanana-section {
		padding: 15px;
		gap: 18px;
		margin: 0 -15px;
		border-radius: 10px;
	}
	.fifaninanana-title {
		font-size: 1.1rem;
	}
	.fifaninanana-download p {
		font-size: 0.85rem;
	}
	.registration-form-container {
		padding: 15px;
	}
	.registration-form-title {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}
	.form-group label {
		font-size: 0.85rem;
	}
	.form-group input {
		padding: 9px 10px;
		font-size: 0.85rem;
	}
	.submit-btn {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
	.registration-notice {
		font-size: 0.85rem;
		padding: 10px;
	}
}

/* Hero Cards (if needed) */
.hero-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.hero-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Page transition container */
.pages-container {
	position: relative;
	overflow: hidden;
}

.page-wrapper {
	display: flex;
	width: 200%;
	transition: transform 0.6s ease-in-out;
}

.page-wrapper.show-about {
	transform: translateX(-50%);
}

.page-content {
	width: 50%;
	flex-shrink: 0;
}

/* About page styles */
.about-page {
	padding: 60px 50px;
	min-height: 500px;
}

.about-page h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--dark-teal);
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: 3px;
}

.about-page h3 {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: 600;
	color: var(--coral-pink);
	text-align: center;
	margin-bottom: 40px;
}

.about-page h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	border-left: 4px solid var(--primary-yellow);
	padding-left: 15px;
}

.about-page p {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 1rem;
	text-align: justify;
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
}

.about-arrows {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.decorative-arrows {
	display: flex;
	gap: 5px;
	cursor: pointer;
	transition: transform 0.3s;
}

.decorative-arrows:hover {
	transform: scale(1.1);
}

.arrow {
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	transition: all 0.3s;
}

.arrows-right .arrow-teal {
	border-left: 18px solid var(--teal);
	border-right: none;
}

.arrows-right .arrow-yellow {
	border-left: 18px solid var(--primary-yellow);
	border-right: none;
}

.arrows-right .arrow-coral {
	border-left: 18px solid var(--coral-pink);
	border-right: none;
}

.btn-primary {
	display: flex;
	align-items: center;
	gap: 8px;
	background-color: var(--primary-yellow);
	color: var(--white);
	border: none;
	padding: 14px 28px;
	border-radius: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.btn-primary:hover {
	background-color: var(--accent-yellow);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(245, 184, 0, 0.4);
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-yellow);
	border: 2px solid var(--primary-yellow);
	padding: 12px 28px;
	border-radius: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.btn-secondary:hover {
	background-color: var(--primary-yellow);
	color: var(--white);
}

/* Responsive Hero */
@media (max-width: 768px) {
	.hero {
		padding: 30px 25px;
	}
}

@media (max-width: 600px) {
	.hero {
		padding: 20px 15px;
	}
	.hero-intro-title {
		font-size: 1.5rem;
	}
	.hero-intro-subtitle {
		font-size: 0.9rem;
	}
}

@media (max-width: 400px) {
	.hero {
		padding: 15px 10px;
	}
	.hero-intro-title {
		font-size: 1.3rem;
	}
	.hero-intro-label {
		font-size: 0.75rem;
		letter-spacing: 2px;
	}
	.hero-intro-subtitle {
		font-size: 0.85rem;
	}
}

/* Features Section */
.features {
	margin: 40px 50px 40px;
}

.features-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-radius: 15px;
	overflow: hidden;
}

.feature-card {
	padding: 35px 30px;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.feature-card:nth-child(1) {
	background: linear-gradient(135deg, var(--coral-pink) 0%, #ff8fa3 100%);
}

.feature-card:nth-child(2) {
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
}

.feature-card:nth-child(3) {
	background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.feature-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--white);
}

.feature-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
}

.feature-description {
	font-size: 0.85rem;
	line-height: 1.6;
	opacity: 0.9;
	position: relative;
}

[contenteditable="true"] {
	outline: none;
	cursor: text;
	transition: background-color 0.3s, box-shadow 0.3s;
	border-radius: 4px;
	padding: 2px 4px;
	margin: -2px -4px;
}

[contenteditable="true"]:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

[contenteditable="true"]:focus {
	background-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	z-index: 1000;
	padding: 20px;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-menu.active {
	display: flex;
}

@media (max-width: 900px) and (orientation: landscape) {
	.mobile-menu {
		padding: 10px 20px;
	}
	.mobile-menu-header {
		margin-bottom: 15px;
	}
	.mobile-nav-menu {
		gap: 8px;
	}
	.mobile-nav-menu a {
		padding: 8px 0;
		font-size: 1rem;
	}
	.mobile-menu .logo {
		width: 40px;
		height: 40px;
	}
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.close-menu {
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--text-dark);
}

.mobile-nav-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-size: 1.3rem;
	font-weight: 600;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	display: block;
}

/* Classes Links Section */
.classes-links-section {
	padding: 50px;
	background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 100%);
	text-align: center;
}

.classes-links-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 10px;
}

.section-subtitle-classes {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	margin-bottom: 35px;
}

.classes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto 30px;
}

.class-category {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 25px;
	backdrop-filter: blur(10px);
}

.class-category h3 {
	color: var(--accent-yellow);
	font-size: 1.1rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.class-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.class-link {
	display: inline-block;
	padding: 10px 20px;
	background: var(--white);
	color: var(--text-dark);
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.class-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.class-link.level-12:hover { background: #ff6b6b; color: white; }
.class-link.level-11:hover { background: #4ecdc4; color: white; }
.class-link.level-10:hover { background: #45b7d1; color: white; }
.class-link.level-9:hover { background: #96ceb4; color: white; }
.class-link.level-8:hover { background: #ffeaa7; color: #333; }
.class-link.level-7:hover { background: #dda0dd; color: white; }
.class-link.level-6:hover { background: #ff6b8a; color: white; }
.class-link.level-5:hover { background: #20b2aa; color: white; }
.class-link.level-4:hover { background: #f5b800; color: white; }
.class-link.level-3:hover { background: #8b5cf6; color: white; }

.view-school-btn {
	display: inline-block;
	padding: 14px 35px;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
	color: var(--white);
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(245, 184, 0, 0.4);
}

.view-school-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(245, 184, 0, 0.5);
}

@media (max-width: 768px) {
	.classes-links-section {
		padding: 40px 20px;
	}
	.classes-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.class-link {
		padding: 8px 16px;
		font-size: 0.85rem;
	}
}

/* News Section */
.news-section {
	padding: 60px 50px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-section h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark-teal);
	margin-bottom: 15px;
}

.news-section .section-subtitle {
	text-align: center;
	color: var(--white);
	font-size: 1.15rem;
	font-weight: 500;
	margin-bottom: 40px;
	background: linear-gradient(135deg, var(--dark-teal) 0%, var(--teal) 100%);
	padding: 15px 30px;
	border-radius: 30px;
	display: inline-block;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.news-section h2 + .section-subtitle {
	display: block;
	margin: 0 auto 40px;
	width: fit-content;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.news-card {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.news-card-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.news-card-content {
	padding: 25px;
}

.news-card-date {
	display: inline-block;
	background: var(--primary-yellow);
	color: var(--white);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.news-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 10px;
	line-height: 1.4;
}

.news-card-description {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.7;
}

.news-card:nth-child(1) .news-card-date { background: var(--coral-pink); }
.news-card:nth-child(2) .news-card-date { background: var(--dark-teal); }
.news-card:nth-child(3) .news-card-date { background: var(--primary-yellow); }

/* Featured Lamesa Layout */
.news-card-featured {
	grid-column: 1 / -1;
	max-width: 900px;
	margin: 0 auto 30px auto;
}

.lamesa-layout {
	padding: 25px;
}

.lamesa-top-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.lamesa-top-photos img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.lamesa-top-photos img:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lamesa-content {
	text-align: center;
	padding: 25px 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	border-radius: 15px;
	margin-bottom: 20px;
	border-left: 4px solid var(--dark-teal);
	border-right: 4px solid var(--dark-teal);
}

.lamesa-content .news-card-date {
	background: linear-gradient(135deg, var(--dark-teal), #1a6b5f);
	font-size: 0.9rem;
}

.lamesa-content .news-card-title {
	font-size: 1.5rem;
	color: var(--dark-teal);
	margin: 15px 0;
}

.lamesa-content .news-card-description {
	font-size: 1rem;
	line-height: 1.8;
	text-align: justify;
}

.lamesa-bottom-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.lamesa-bottom-photos img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.lamesa-bottom-photos img:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.lamesa-top-photos {
		grid-template-columns: 1fr;
	}
	.lamesa-top-photos img {
		height: 180px;
	}
	.lamesa-bottom-photos {
		grid-template-columns: 1fr 1fr;
	}
	.lamesa-bottom-photos img:last-child {
		grid-column: 1 / -1;
		height: 200px;
	}
	.lamesa-content .news-card-title {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.lamesa-bottom-photos {
		grid-template-columns: 1fr;
	}
	.lamesa-bottom-photos img,
	.lamesa-bottom-photos img:last-child {
		height: 160px;
		grid-column: auto;
	}
}

/* Christmas Celebration Section */
.news-card-christmas {
	grid-column: 1 / -1;
	max-width: 950px;
	margin: 0 auto 30px auto;
}

.christmas-layout {
	padding: 25px;
}

.christmas-title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--dark-teal);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.christmas-title::before { content: "🎄"; }
.christmas-title::after { content: "🎁"; }

.christmas-top-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 20px;
}

.christmas-photo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.christmas-photo-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.christmas-photo-item img:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.christmas-subtitle {
	margin-top: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	background: linear-gradient(135deg, #c41e3a, #8b0000);
	padding: 6px 14px;
	border-radius: 20px;
}

.christmas-content {
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, #fef9e7 0%, #fff 100%);
	border-radius: 15px;
	margin-bottom: 20px;
	border-left: 4px solid #c41e3a;
	border-right: 4px solid #c41e3a;
}

.christmas-content .news-card-description {
	font-size: 1rem;
	line-height: 1.8;
	text-align: justify;
	color: var(--text-gray);
}

.christmas-bottom-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

@media (max-width: 768px) {
	.christmas-top-photos,
	.christmas-bottom-photos {
		grid-template-columns: 1fr 1fr;
	}
	.christmas-top-photos .christmas-photo-item:last-child,
	.christmas-bottom-photos .christmas-photo-item:last-child {
		grid-column: 1 / -1;
	}
	.christmas-top-photos .christmas-photo-item:last-child img,
	.christmas-bottom-photos .christmas-photo-item:last-child img {
		height: 200px;
		max-width: 60%;
		margin: 0 auto;
	}
	.christmas-title {
		font-size: 1.3rem;
	}
	.christmas-subtitle {
		font-size: 0.8rem;
		padding: 5px 10px;
	}
}

@media (max-width: 480px) {
	.christmas-top-photos,
	.christmas-bottom-photos {
		grid-template-columns: 1fr;
	}
	.christmas-photo-item img,
	.christmas-top-photos .christmas-photo-item:last-child img,
	.christmas-bottom-photos .christmas-photo-item:last-child img {
		height: 180px;
		max-width: 100%;
	}
	.christmas-layout {
		padding: 15px;
	}
	.christmas-content {
		padding: 15px;
	}
}

/* Zokiolona Dec 2025 Layout */
.zoki-dec23-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 30px;
	align-items: start;
}

.zoki-dec23-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.zoki-dec23-content .news-card-title {
	font-size: 1.6rem;
	color: var(--dark-teal);
	margin-bottom: 20px;
}

.zoki-dec23-media {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.zoki-dec23-subtitle {
	text-align: center;
	background-color: var(--accent-yellow);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 1rem;
	align-self: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
	.zoki-dec23-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.zoki-dec23-content {
		text-align: center;
	}
}

/* Visitors Section */
.visitors-section {
	padding: 60px 50px;
	background: linear-gradient(135deg, #e8f5f3 0%, #d4ede8 100%);
}

.visitors-section h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark-teal);
	margin-bottom: 15px;
}

.visitors-section .section-subtitle {
	text-align: center;
	color: var(--white);
	font-size: 1.15rem;
	font-weight: 500;
	margin-bottom: 40px;
	background: linear-gradient(135deg, var(--coral-pink) 0%, #ff8fa3 100%);
	padding: 15px 30px;
	border-radius: 30px;
	display: block;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 4px 15px rgba(255, 107, 138, 0.3);
}

.visitor-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.visitor-description {
	text-align: center;
}

.visitor-text-box {
	background: var(--white);
	padding: 35px 40px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
	border-left: 5px solid var(--primary-yellow);
}

.visitor-text-box h3 {
	color: var(--dark-teal);
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.visitor-text-box p {
	color: var(--text-gray);
	font-size: 1.05rem;
	line-height: 1.9;
	text-align: justify;
	margin-bottom: 15px;
}

.visitor-text-box .blessing-text {
	color: var(--coral-pink);
	font-style: italic;
	font-size: 1.1rem;
	text-align: center;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 2px dashed var(--accent-yellow);
}

.visitor-gallery {
	width: 100%;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
	gap: 15px;
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 180px;
}

.gallery-item.large img {
	min-height: 380px;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 40px 15px 15px;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay span {
	color: white;
	font-size: 0.9rem;
	font-weight: 500;
}

@media (max-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-item.large {
		grid-column: span 2;
		grid-row: span 1;
	}
	.gallery-item.large img {
		min-height: 250px;
	}
}

@media (max-width: 600px) {
	.visitors-section {
		padding: 40px 20px;
	}
	.visitor-text-box {
		padding: 25px 20px;
	}
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.gallery-item.large {
		grid-column: span 1;
	}
	.gallery-item img,
	.gallery-item.large img {
		min-height: 200px;
	}
}

/* News Card Carousel */
.news-card-carousel {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.carousel-images {
	display: flex;
	transition: transform 0.4s ease-in-out;
	height: 100%;
}

.carousel-images img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	flex-shrink: 0;
	cursor: pointer;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
	z-index: 10;
}

.carousel-btn:hover {
	background: var(--primary-yellow);
	color: white;
}

.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

.carousel-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot.active {
	background: var(--primary-yellow);
	transform: scale(1.2);
}

.carousel-counter {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 10;
}

/* Lightbox Modal */
.lightbox-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.lightbox-modal.active {
	display: flex;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 2.5rem;
	color: white;
	cursor: pointer;
	transition: color 0.3s;
	z-index: 2001;
}

.lightbox-close:hover {
	color: var(--primary-yellow);
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	transition: all 0.3s;
}

.lightbox-btn:hover {
	background: var(--primary-yellow);
}

.lightbox-btn-prev { left: -70px; }
.lightbox-btn-next { right: -70px; }

.lightbox-counter {
	color: white;
	margin-top: 20px;
	font-size: 1.1rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.lightbox-btn {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	.lightbox-btn-prev { left: 10px; }
	.lightbox-btn-next { right: 10px; }
}

/* Responsive */
@media (max-width: 768px) {
	body {
		padding: 10px;
	}
	.navbar {
		padding: 15px 20px;
	}
	.nav-menu {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.nav-right .signup-link {
		display: none;
	}
	.features {
		margin: 0 15px 20px;
	}
	.features-container {
		grid-template-columns: 1fr;
	}
	.page-title {
		font-size: 1rem;
		padding: 15px 10px;
	}
	.login-btn span {
		display: none;
	}
	.login-btn {
		padding: 10px;
		border-radius: 50%;
	}
}

@media (max-width: 480px) {
	.logo {
		width: 45px;
		height: 45px;
	}
}
