* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
	background: linear-gradient(180deg, #E6F0FA 0%, #B3DFFD 100%);
	color: #333;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
header {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0.5rem 0;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	font-size: 12px !important;
}
header img {
	width: 20%;
	max-width: 100px;
	height: auto;
}
header h1 {
	display: none !important;
	font-size: 1rem;
	font-weight: 700;
}
header p {
	font-size: 1.0rem !important;
	font-weight: 400;
	color: #fff !important;
	background: #6082ff !important;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	display: inline-block;
	line-height: 1.2;
}
.hero {
	position: relative;
	text-align: center;
	padding: 40px 16px;
	background: #6082ff;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero h1 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: 700;
}
.hero p {
	font-size: 1rem;
	max-width: 90%;
	margin: 0 auto 20px;
}
.cta-button {
	display: inline-flex;
	padding: 12px 24px;
	background: #005B99;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.1s;
	touch-action: manipulation;
}
.cta-button:hover, .cta-button:focus {
	background: #0033A0;
	transform: scale(1.02);
}
.clouds {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
	display: none;
}
@media (min-width: 768px) {
	.clouds { display: block; }
	.cloud {
		position: absolute;
		background: rgba(255, 255, 255, 0.7);
		border-radius: 100px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		animation: drift 20s linear infinite;
	}
	.cloud:nth-child(1) { width: 150px; height: 40px; top: 20%; left: -150px; animation-duration: 25s; }
	.cloud:nth-child(2) { width: 100px; height: 30px; top: 50%; left: -100px; animation-duration: 30s; }
	@keyframes drift {
		from { transform: translateX(-150px); }
		to { transform: translateX(1200px); }
	}
}
main {
	max-width: 1200px;
	padding: 24px 16px;
	margin: 16px auto;
}
.container {
	max-width: 100%;
	font-size: 16px !important;
}
section {
	margin-bottom: 24px;
}
h2 {
	color: #005B99;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 16px;
}
.card {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.event-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
}
.event-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #005B99;
	margin-bottom: 8px;
}
.event-card p {
	font-size: 1.2rem;
	color: #333;
	margin: 0;
}
.event-card a {
	background: #005B99;
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
	grid-row: span 3;
}
.event-card a:hover {
	background: #0033A0;
}
footer {
	background: #F5F7FA;
	padding: 16px;
	text-align: center;
	font-size: 0.85rem;
}
footer .container {
	max-width: none !important;
}
footer p {
	color: #333;
}
footer a {
	color: #005B99;
	text-decoration: none;
	margin: 0 8px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s;
}
footer a:hover {
	color: #0033A0;
}
.gallery {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
	overflow-x: hidden;
}
#imageModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
#closeModal {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
}
#enlargedImage {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
}
@media (max-width: 768px) {
	html { font-size: 14px; }
	header { padding: 0.3rem 0; }
	header img { width: 25%; max-width: 80px; }
	.hero { padding: 30px 12px; min-height: 250px; }
	.hero h1 { font-size: 1.8rem; }
	.hero p { font-size: 1rem; }
	.cta-button { padding: 10px 20px; font-size: 0.95rem; }
	main { padding: 16px 12px; margin: 12px; }
	h2 { font-size: 1.3rem; }
	.event-card { grid-template-columns: 1fr; }
	.event-card a { grid-row: auto; padding: 8px; }
	footer { padding: 12px; font-size: 0.8rem; }
	.gallery img { width: 40%; height: 100px; }
}
@media (min-width: 768px) {
	html { font-size: 18px; }
	header { padding: 0.5rem 0; }
	header img { width: 20%; max-width: 120px; }
	.hero { padding: 60px 24px; min-height: 400px; }
	.hero h1 { font-size: 2.5rem; }
	.hero p { font-size: 1.2rem; }
	.cta-button { padding: 14px 32px; font-size: 1.1rem; }
	main { padding: 32px 24px; margin: 24px auto; }
	h2 { font-size: 1.8rem; }
	footer { padding: 24px; font-size: 1rem; }
}
