/* Base */
:root {
	--bg: #ffffff;
	--panel: #f8f9fa;
	--panel-alt: #f1f3f4;
	--text: #1a1a1a;
	--muted: #6c757d;
	--brand: #0066cc;
	--brand-strong: #0052a3;
	--line: #e9ecef;
	--accent: #17a2b8;
	--shadow: rgba(0, 0, 0, 0.1);
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 3px var(--shadow);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.brand .title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.2px;
	color: var(--text);
}

.brand .subtitle {
	margin: 0;
	margin-top: 2px;
	font-size: 12px;
	color: var(--muted);
}



/* Hero */
.hero {
	padding: 48px 0 40px;
	background: linear-gradient(180deg, var(--panel), var(--bg));
	border-bottom: 1px solid var(--line);
}

.hero-logo {
	width: 280px;
	height: auto;
	margin: 0 0 20px;
	display: block;
}

.hero h2 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.25;
	color: var(--text);
}

.hero .hero-meta {
	margin: 0;
	color: var(--muted);
}

.hero .hero-note {
	margin: 8px 0 20px;
	color: var(--muted);
}

.btn {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid var(--line);
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn:hover {
	border-color: var(--brand);
	background: rgba(0, 102, 204, 0.05);
	color: var(--brand);
}

.btn.primary {
	background: var(--brand);
	border-color: var(--brand);
	color: white;
}

.btn.primary:hover {
	background: var(--brand-strong);
	border-color: var(--brand-strong);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.hero-cta .btn + .btn {
	margin-left: 10px;
}

/* Sections */
.section {
	padding: 48px 0;
}

.section.alt {
	background: var(--panel-alt);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.section h3 {
	margin-top: 0;
	font-size: 24px;
	margin-bottom: 16px;
	color: var(--text);
}

.section p {
	margin: 0 0 12px;
}

.note {
	color: var(--muted);
	font-size: 14px;
}

/* Cards */
.card-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.card {
	border: 1px solid var(--line);
	background: var(--bg);
	border-radius: 12px;
	padding: 14px;
	box-shadow: 0 1px 3px var(--shadow);
	transition: box-shadow 0.2s ease;
}

.card:hover {
	box-shadow: 0 2px 8px var(--shadow);
}

.card.person {
	text-align: center;
}

.card.person img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 12px;
	border: 2px solid var(--line);
}

.card.person h4 {
	margin: 0 0 6px;
	font-size: 16px;
	color: var(--text);
}

.card.person p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

/* Table */
.table-wrap {
	overflow-x: auto;
	box-shadow: 0 1px 3px var(--shadow);
	border-radius: 10px;
}

.schedule {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg);
	border-radius: 10px;
	overflow: hidden;
}

.schedule th, .schedule td {
	border-bottom: 1px solid var(--line);
	padding: 12px 16px;
	text-align: left;
}

.schedule thead th {
	background: var(--panel);
	color: var(--muted);
	font-weight: 600;
}

.schedule tbody tr:nth-child(odd) td {
	background: var(--panel-alt);
}

.schedule tbody tr:hover td {
	background: rgba(0, 102, 204, 0.05);
}

/* Bullets */
.bullets {
	margin: 0;
	padding-left: 18px;
}

.bullets li {
	margin: 6px 0;
}

/* Timeline */
.timeline {
	margin: 0;
	padding-left: 18px;
}

.timeline li {
	margin: 6px 0;
}

/* Footer */
.site-footer {
	padding: 24px 0 40px;
	border-top: 1px solid var(--line);
	background: var(--panel);
}

.site-footer p {
	margin: 6px 0;
}

.site-footer .small {
	color: var(--muted);
	font-size: 13px;
}

/* Links */
a {
	color: var(--brand);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Mobile Navigation */
.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 4px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--muted);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.nav a {
	color: var(--muted);
	text-decoration: none;
	margin-left: 12px;
	font-weight: 500;
	transition: color 0.2s ease;
	white-space: nowrap;
	font-size: 13px;
	padding: 4px 2px;
}

.nav a:hover {
	color: var(--brand);
}	color: var(--muted);
	text-decoration: none;
	margin-left: 12px;
	font-weight: 500;
	transition: color 0.2s ease;
	white-space: nowrap;

/* Mobile Navigation */
.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 4px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--muted);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nav a {
		font-size: 12px;
		margin-left: 10px;
	}
}

@media (max-width: 900px) {
	.nav a {
		font-size: 11px;
		margin-left: 8px;
	}
}

@media (max-width: 800px) {
	.header-inner {
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.nav {
		order: 3;
		width: 100%;
		justify-content: center;
		margin-top: 8px;
	}
	
	.nav a {
		font-size: 12px;
		margin: 0 6px;
	}
}

@media (max-width: 700px) {
	.nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px;
	}
	
	.nav a {
		font-size: 11px;
		margin: 0 4px;
		padding: 2px 4px;
	}
}

@media (max-width: 768px) {
	.header-inner {
		height: auto;
		padding: 12px 0;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.nav-toggle {
		display: flex;
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-top: 1px solid var(--line);
		box-shadow: 0 2px 8px var(--shadow);
		flex-direction: column;
		align-items: stretch;
		padding: 16px 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
		order: unset;
		width: unset;
		justify-content: unset;
		margin-top: unset;
	}

	.nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav a {
		margin: 8px 0;
		padding: 8px 0;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
		text-align: left;
	}

	.nav a:last-child {
		border-bottom: none;
	}

	.hero h2 {
		font-size: 24px;
		line-height: 1.3;
	}

	.hero-cta {
		display: flex;
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}

	.hero-cta .btn {
		text-align: center;
		margin: 0;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.section {
		padding: 32px 0;
	}

	.section h3 {
		font-size: 20px;
	}

	.table-wrap {
		font-size: 14px;
	}

	.schedule th, .schedule td {
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero h2 {
		font-size: 22px;
	}

	.brand .title {
		font-size: 18px;
	}

	.brand .subtitle {
		font-size: 11px;
	}
}
