/* Core Variables */
:root {
	--primary-color: #003366; /* Deep Blue for trust */
	--accent-color: #e65100; /* Energetic Orange for action/Taekwondo */
	--text-dark: #333333;
	--text-light: #666666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--font-main: "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.text-center {
	text-align: center;
}
.bg-light {
	background-color: var(--bg-light);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small,
.btn-outline {
	display: inline-block;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #cc4800;
}

.btn-secondary {
	background-color: var(--white);
	color: var(--primary-color);
}

.btn-outline {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-primary-small {
	background-color: var(--accent-color);
	color: var(--white);
	padding: 6px 12px;
	font-size: 0.9em;
}

/* Top Bar & Header */
.top-bar {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 8px 0;
}

.top-bar-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}

.lang-btn {
	background: none;
	border: 1px solid var(--white);
	color: var(--white);
	padding: 4px 8px;
	cursor: pointer;
	font-size: 0.9em;
}

.main-header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo a {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

.nav-links a {
	margin-left: 20px;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
}

.nav-links a:hover {
	color: var(--accent-color);
}

/* Hero Section */
.hero-section {
	background:
		linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)),
		url("hero-placeholder.jpg") center/cover;
	color: var(--white);
	padding: 120px 0;
	text-align: center;
}

.hero-content h1 {
	font-size: 3em;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.2em;
	max-width: 800px;
	margin: 0 auto 30px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
}

/* Layout Modules */
.mission-section {
	padding: 80px 0;
}
.lead-text {
	font-size: 1.1em;
	max-width: 800px;
	margin: 20px auto 0;
	color: var(--text-light);
}

.impact-section {
	padding: 80px 0;
}
.grid-2-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.stat-box {
	background: var(--white);
	padding: 30px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--accent-color);
}

.stat-box h3 {
	font-size: 2.5em;
	color: var(--primary-color);
}

/* Footer */
.main-footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 60px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 0.9em;
}
/* Multi-column Grid Layouts */
.grid-3-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.grid-4-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

/* Card Styles for Audiences and Programs */
.audience-card,
.program-card {
	background: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.audience-card:hover,
.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Audience Card Specifics */
.audience-card {
	border-top: 4px solid var(--accent-color);
}
.audience-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.3em;
}

/* Program Card Specifics */
.program-card {
	border-left: 4px solid var(--primary-color);
	border-left: none; /* 去除原本的左边框 */
}
.program-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.2em;
}

/* Impact Section Enhancements */
.impact-stats-grid {
	margin-bottom: 40px;
}

.styled-list {
	list-style: none;
	padding: 0;
}

.styled-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	font-size: 1.1em;
	color: var(--text-dark);
}

.styled-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent-color);
	font-weight: bold;
	font-size: 1.2em;
}

.impact-text-content p {
	line-height: 1.8;
}
/* Support & Story Cards */
.support-card,
.story-card {
	background: var(--white);
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-top: 3px solid var(--primary-color);
}

.support-card h4,
.story-card h4 {
	color: var(--accent-color);
	margin-bottom: 10px;
	font-size: 1.2em;
}

/* Event List */
.event-list {
	max-width: 800px;
	margin: 40px auto 0;
	text-align: left;
	list-style: none;
	padding: 0;
}

.event-list li {
	background: var(--bg-light);
	padding: 20px;
	margin-bottom: 15px;
	border-left: 4px solid var(--accent-color);
	border-radius: 4px;
	font-size: 1.1em;
}

/* Call to Action Section */
.cta-section {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 80px 0;
}

.cta-desc {
	color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.btn-outline-white {
	display: inline-block;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 2px solid var(--white);
	color: var(--white);
}

.btn-outline-white:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

/* Contact Details */
.contact-details {
	margin-top: 30px;
	font-size: 1.1em;
	line-height: 2;
}
/* Image Styling Enhancements */
.img-fluid {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.shadow-rounded {
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.shadow-rounded:hover {
	transform: translateY(-5px);
}

.mb-15 {
	margin-bottom: 15px;
}

/* Alignment Classes */
.align-center {
	align-items: center;
}

/* Enhancing existing Cards */
.audience-card {
	padding: 20px;
}

.support-card h4 {
	font-size: 1.3em;
	margin-bottom: 15px;
}

.chart-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
/* =========================================
   Spacing and Layout Adjustments
   ========================================= */

/* Increase padding for all major sections to create breathing room */
.content-section {
	padding: 100px 0;
}

/* Specific adjustment for the impact section if it doesn't use .content-section */
.impact-section {
	padding: 100px 0;
}

/* Add more space below the main section titles */
.content-section h2,
.impact-section h2 {
	margin-top: 0;
	margin-bottom: 50px;
	text-transform: capitalize; /* Optional: makes titles look a bit more polished */
}

/* Ensure grid layouts don't push completely to the bottom of their containers */
.grid-2-col,
.grid-3-col,
.grid-4-col {
	margin-bottom: 20px;
}
/* Impact Stats Typography */
.stat-num {
	font-size: 3.5em;
	color: var(--primary-color);
	margin-bottom: 5px;
	font-weight: bold;
}

.stat-item p {
	font-size: 1.1em;
	color: var(--text-light);
	font-weight: 500;
}

.align-start {
	align-items: flex-start;
}

/* Styled Lists for Impact Section */
.styled-list {
	list-style: none;
	padding: 0;
}

.styled-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	font-size: 1.1em;
	color: var(--text-dark);
}

.styled-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent-color);
	font-weight: bold;
	font-size: 1.2em;
}
/* =========================================
   Updated Navigation & Icons
   ========================================= */
.nav-links {
	display: flex;
	align-items: center;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #ddd;
}

.icon-btn {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--text-dark);
	font-size: 1em;
	font-family: inherit;
	font-weight: bold;
	transition: color 0.3s ease;
}

.icon-btn:hover {
	color: var(--accent-color);
}

.icon-btn-donate {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mobile-menu-btn {
	display: none; /* Hidden on desktop */
	background: none;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
}

.contact-footer p {
	margin-bottom: 10px;
	font-size: 0.95em;
}

/* =========================================
   Responsive Design (Mobile Support)
   ========================================= */
@media (max-width: 992px) {
	/* Tablet adjustments */
	.grid-4-col {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	/* Mobile adjustments */
	.grid-2-col,
	.grid-3-col,
	.grid-4-col {
		grid-template-columns: 1fr; /* Stack everything into a single column */
	}

	.content-section,
	.impact-section {
		padding: 60px 0; /* Less padding on mobile */
	}

	.hero-content h1 {
		font-size: 2.2em; /* Smaller hero text */
	}

	.footer-grid {
		grid-template-columns: 1fr; /* Stack footer elements */
		text-align: center;
	}

	.nav-actions {
		border-left: none; /* Remove separator on mobile */
	}

	/* Mobile Navigation Menu */
	.mobile-menu-btn {
		display: block; /* Show hamburger icon */
	}

	.nav-links {
		display: none; /* Hide standard links */
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		padding: 20px 0;
		z-index: 1000;
	}

	.nav-links.active {
		display: flex; /* Show when active class is added */
	}

	.nav-links a,
	.nav-actions {
		padding: 15px 20px;
		width: 100%;
		margin: 0;
		justify-content: flex-start;
	}

	.nav-actions {
		border-top: 1px solid #eee;
		margin-top: 10px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}
/* =========================================
   Back to Top Button
   ========================================= */
.back-to-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: var(--accent-color);
	color: var(--white);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	/* Hidden by default */
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 1000;
}

/* Class added via JavaScript when scrolling down */
.back-to-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top-btn:hover {
	background-color: #cc4800; /* Darker accent color on hover */
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Adjust position for mobile devices so it doesn't block content */
@media (max-width: 768px) {
	.back-to-top-btn {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}
/* =========================================
   Call to Action (Light Theme) Buttons
   ========================================= */

/* Use the accent orange for the Donate button here */
.btn-accent {
	display: inline-block;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
	background-color: var(--accent-color);
	color: var(--white);
	border: none;
}

.btn-accent:hover {
	background-color: #cc4800; /* Darker orange on hover */
	transform: translateY(-2px);
}

/* New style: Deep blue border button for white backgrounds */
.btn-outline-primary {
	display: inline-block;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	background-color: transparent;
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}
/* =========================================
   Footer & CTA Integrated Buttons
   ========================================= */

/* White outline button for dark backgrounds (Footer) */
.btn-outline-white {
	display: inline-block;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 2px solid var(--white);
	color: var(--white);
	background-color: transparent;
}

.btn-outline-white:hover {
	background-color: var(--white);
	color: var(--primary-color);
	transform: translateY(-2px);
}

/* Ensure the secondary button works well in the footer */
.btn-secondary {
	background-color: var(--white);
	color: var(--primary-color);
	border: 2px solid var(--white);
}

.btn-secondary:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}
/* =========================================
   Streamlined Footer Links
   ========================================= */
.footer-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
	font-weight: 500;
}

.footer-link:hover {
	color: var(--accent-color);
	transform: translateX(5px); /* Adds a subtle slide effect on hover */
}
/* =========================================
   About Us Page Specific Styles
   ========================================= */

/* Subpage Hero Banner */
.page-hero {
	color: var(--white);
	padding: 120px 0;
	margin-bottom: 0;
}

.page-hero h1 {
	font-size: 3em;
	margin-bottom: 10px;
}

/* Values Grid Cards */
.value-card {
	background: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--primary-color);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.3em;
}

/* Team Section */
.team-img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 50%; /* Make images circular */
	margin: 0 auto 20px;
	display: block;
}

.team-card h4 {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.team-card p {
	color: var(--text-light);
}
/* =========================================
   Programs Detail Page (Zig-Zag Layout)
   ========================================= */

.programs-detail-section {
	padding-top: 40px;
}

.program-detail-row {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 80px;
}

/* Reverse the flex direction for alternating layout */

.program-img-wrapper {
	flex: 1;
}

.program-text-wrapper {
	flex: 1;
}

.program-text-wrapper h3 {
	font-size: 2em;
	margin-bottom: 15px;
}

/* Small accent line under the title */
.title-divider {
	width: 60px;
	height: 4px;
	background-color: var(--accent-color);
	margin-bottom: 25px;
	border-radius: 2px;
}

.program-text-wrapper p {
	font-size: 1.15em;
	line-height: 1.8;
	color: var(--text-light);
}

/* Mobile adjustments for Zig-Zag layout */
@media (max-width: 768px) {
	.program-detail-row,
	.program-detail-row.reverse-row {
		flex-direction: column; /* Stack vertically */
		gap: 30px;
		margin-bottom: 60px;
	}

	/* Force the image to ALWAYS be on top of the text on mobile */
	.program-img-wrapper {
		order: -1;
	}

	.program-text-wrapper {
		order: 1;
	}

	.program-text-wrapper h3 {
		font-size: 1.5em;
	}
}
/* =========================================
   Community Impact Page Specific Styles
   ========================================= */

/* Core Data Stats Grid */
.stat-card {
	padding: 30px 20px;
	background-color: #f8fbff; /* Very light blue */
	border-radius: 8px;
	border-bottom: 4px solid var(--accent-color);
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 3.5em;
	color: var(--primary-color);
	margin-bottom: 10px;
	font-weight: 800;
}

/* Impact Stories Cards */
.story-card {
	background: var(--white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	border-left: 4px solid var(--accent-color);
}

.quote-icon {
	font-size: 5em;
	color: rgba(204, 102, 0, 0.1); /* Faint accent color */
	position: absolute;
	top: 10px;
	left: 20px;
	font-family: serif;
	line-height: 1;
}

.story-text {
	font-size: 1.1em;
	font-style: italic;
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.story-author {
	color: var(--primary-color);
	font-weight: bold;
}
/* =========================================
   Donate Page Specific Styles
   ========================================= */

/* PayPal Button Placeholder */
.btn-paypal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffc439; /* PayPal Yellow */
	color: #003087; /* PayPal Deep Blue */
	padding: 15px 40px;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.btn-paypal:hover {
	background-color: #f2ba36;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
/* =========================================
   Clean Minimalist List Grid (Alternative to Cards)
   ========================================= */

.clean-list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 columns for a more elegant look */
	gap: 0 60px; /* Space between columns */
	max-width: 900px;
	margin: 0 auto; /* Center the grid */
}

.clean-list-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 0;
	border-bottom: 1px solid #eaeaea; /* Light elegant divider */
	font-size: 1.15em;
	font-weight: 500;
	color: var(--text-dark);
	transition: all 0.3s ease;
	cursor: default;
}

.clean-list-item svg {
	color: var(--accent-color);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

/* Hover effects for a premium feel */
.clean-list-item:hover {
	color: var(--primary-color);
	padding-left: 10px; /* Subtle slide-right effect */
	border-bottom-color: var(--primary-color);
}

.clean-list-item:hover svg {
	transform: scale(1.2); /* Icon pops slightly */
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.clean-list-grid {
		grid-template-columns: 1fr; /* Stack into 1 column on mobile */
		gap: 0;
	}
}
/* =========================================
   Events Page Specific Styles
   ========================================= */

/* Horizontal Event Card Layout */
.event-list-container {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.event-card {
	display: flex;
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	border: 1px solid #eaeaea;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Event Date Badge (Calendar Style) */
.event-date-badge {
	background-color: var(--primary-color);
	color: var(--white);
	min-width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.event-month {
	font-size: 1.2em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.event-day {
	font-size: 3em;
	font-weight: 800;
	line-height: 1;
	margin-top: 5px;
	color: var(--accent-color);
}

/* Event Details Section */
.event-details {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.event-details h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.5em;
}

.event-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	color: var(--text-light);
	font-weight: 500;
}

.event-desc {
	margin-bottom: 25px;
	color: var(--text-dark);
	line-height: 1.6;
}

/* Past Events Gallery & Video */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-img:hover {
	transform: scale(1.03);
}

.mt-40 {
	margin-top: 40px;
}

.video-placeholder {
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url("https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1200&q=80")
			center/cover no-repeat;
	height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.video-placeholder:hover {
	opacity: 0.9;
}

/* Event Card Image Wrapper */
.event-img-wrapper {
	width: 250px; /* Fixed width for desktop */
	flex-shrink: 0;
}

.event-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Ensure you update the mobile adjustments at the very bottom of styles.css to include the image */
@media (max-width: 768px) {
	.event-card {
		flex-direction: column; /* Stack image, date, and details vertically */
	}

	.event-img-wrapper {
		width: 100%;
		height: 200px; /* Nice height for mobile viewing */
	}

	.event-date-badge {
		padding: 15px;
		flex-direction: row;
		gap: 15px;
	}

	.event-month {
		font-size: 1.5em;
		margin-top: 5px;
	}

	.event-day {
		font-size: 2em;
		margin-top: 0;
	}

	.event-meta {
		flex-direction: column;
		gap: 10px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.video-placeholder {
		height: 250px;
	}
}

/* Mobile Adjustments for Events */
@media (max-width: 768px) {
	.event-card {
		flex-direction: column; /* Stack date badge on top of details */
	}

	.event-date-badge {
		padding: 15px;
		flex-direction: row; /* Horizontal layout for date on mobile */
		gap: 15px;
	}

	.event-month {
		font-size: 1.5em;
		margin-top: 5px;
	}

	.event-day {
		font-size: 2em;
		margin-top: 0;
	}

	.event-meta {
		flex-direction: column;
		gap: 10px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
	}

	.video-placeholder {
		height: 250px;
	}
}
/* =========================================
   Contact Us Page Specific Styles
   ========================================= */

.contact-grid {
	display: flex;
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
}

/* Left Panel: Contact Info */
.contact-info-panel {
	flex: 1;
	padding-top: 20px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
	font-size: 1.1em;
	color: var(--text-dark);
}

.contact-icon {
	font-size: 1.5em;
	line-height: 1;
}

/* Right Panel: Form */
.contact-form-panel {
	flex: 1.5;
	background-color: var(--white);
	padding: 40px;
	border-radius: 8px;
	border-top: 4px solid var(--accent-color);
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-group {
	margin-bottom: 25px;
	flex: 1;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-dark);
}

/* Modern Input Styling */
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
	font-family: inherit;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
	background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
	background-color: var(--white);
}

.form-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.form-note {
	font-size: 0.9em;
	color: var(--text-light);
	font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.contact-grid {
		flex-direction: column;
		gap: 40px;
	}

	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.contact-form-panel {
		padding: 30px 20px;
	}

	.form-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}
