:root {
	--font-stack: 'Handlee', 'Yomogi', 'Klee One', 'Zen Maru Gothic', "Microsoft JhengHei", sans-serif;
	--font-serif: "Noto Serif TC", serif;
}

body {
	font-family: var(--font-stack);
	background-color: #E6E2D3;
	background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
	color: #3D3935;
	font-size: 16px;
	line-height: 1.7;
}

.container-events {
	width: 1000px;
	margin: 40px auto;
	background: #FDFCF8;
	padding: 50px;
	border: 1px solid #C4BCAC;
	box-shadow: 12px 12px 0px rgba(196, 188, 172, 0.2);
	position: relative;
	overflow: visible; 
}

.washi-tape-top {
	position: absolute;
	width: 140px;
	height: 40px;
	background: rgba(182, 194, 170, 0.4);
	top: -12px;
	left: 50px;
	transform: rotate(-3deg);
	z-index: 50;
	border-left: 2px dashed #FFF;
	border-right: 2px dashed #FFF;
}

/* --- Header Styles --- */
header {
	border-bottom: 2px solid #3D3935;
	padding-bottom: 30px;
	margin-bottom: 50px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.logo-main {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 4px;
	line-height: 1.1;
	color: #2D2A26;
}

.logo-en {
	font-family: 'Handlee', cursive;
	font-size: 18px;
	color: #6B6559;
	letter-spacing: 2px;
	opacity: 0.8;
}

.logo-sub-aside {
	font-family: 'Yomogi', cursive;
	font-size: 16px;
	color: #A69F8E;
	text-align: right;
	line-height: 1.8;
	letter-spacing: 2px;
}

nav {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 45px;
	position: relative;
	z-index: 100;
}

.nav-item { position: relative; }

.nav-link {
	text-decoration: none;
	color: #888;
	font-size: 17px;
	letter-spacing: 1px;
	padding-bottom: 5px;
	border-bottom: 1px dotted transparent;
	transition: all 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-item:hover .nav-link {
	color: #3D3935;
	border-bottom: 1px dotted #3D3935;
}

.arrow-down { font-size: 10px; opacity: 0.5; }

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #FDFCF8;
	border: 1px solid #C4BCAC;
	box-shadow: 4px 4px 0px rgba(196, 188, 172, 0.1);
	min-width: 140px;
	padding: 10px 0;
	z-index: 200;
	margin-top: 5px;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
	background: transparent;
}

.nav-item:hover .dropdown-menu { display: block; }

.dropdown-menu a {
	display: block;
	padding: 8px 20px;
	color: #6B6559;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
}

.dropdown-menu a:hover { background-color: #F7F5F0; color: #A67C52; }

/* --- Content Styles --- */
.page-intro {
	text-align: center;
	margin-bottom: 50px;
}

.page-title-box {
	display: inline-block;
	background: #3D3935;
	color: #FDFCF8;
	padding: 5px 25px;
	transform: rotate(-1deg);
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 28px;
	font-weight: 700;
}

/* 活動網格 */
.events-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 80px;
}

.event-card {
	background: #FFF;
	border: 1px solid #EBE7DE;
	padding: 20px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	box-shadow: 4px 4px 15px rgba(0,0,0,0.03);
}

.event-card:nth-child(odd) { transform: rotate(-0.5deg); }
.event-card:nth-child(even) { transform: rotate(0.8deg); }

.event-card:hover {
	transform: rotate(0deg) translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.07);
	z-index: 10;
}

.event-img-box {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #F1EFE9;
	margin-bottom: 20px;
	position: relative;
}

.event-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(5%) contrast(98%);
	transition: transform 0.6s;
}

.event-card:hover .event-img-box img {
	transform: scale(1.05);
}

/* 狀態標籤 */
.status-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255,255,255,0.9);
	padding: 4px 12px;
	font-size: 13px;
	border: 1px solid #3D3935;
	font-family: 'Zen Maru Gothic', sans-serif;
	z-index: 5;
}

.status-full {
	border-color: #D4D4D4;
	color: #D4D4D4;
}

.event-content h3 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #2D2A26;
}

.event-meta {
	font-family: 'Yomogi', cursive;
	font-size: 14px;
	color: #A69F8E;
	margin-bottom: 15px;
	border-left: 3px solid #E6E2D3;
	padding-left: 12px;
}

.event-desc {
	font-size: 14px;
	color: #6B6559;
	margin-bottom: 20px;
	height: 4.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.event-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px dashed #EBE7DE;
	padding-top: 15px;
}

.btn-detail {
	font-family: 'Handlee', cursive;
	font-size: 14px;
	color: #A67C52;
	text-decoration: underline;
}

/* --- Footer Styles --- */
.bottom-action {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 50px;
	background: #3D3935;
	color: #DDD;
	padding: 60px;
	margin: 60px -50px -50px -50px; 
}

.section-title-footer {
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 17px;
	margin-bottom: 30px;
	display: block;
	color: #FFF;
	border-bottom: 1px solid #555;
	padding-bottom: 10px;
}

.stamp-btn {
	border: 2px solid #A67C52;
	color: #A67C52;
	padding: 20px;
	text-align: center;
	display: block;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 4px;
	background: #3D3935;
	transition: all 0.3s;
}

.stamp-btn:hover {
	background: #A67C52;
	color: #FFF;
}
