* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Noto Sans TC', sans-serif; background-color: #fdfbfb; color: #333; line-height: 1.6; overflow-x: hidden; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.is-active { opacity: 1; transform: translateY(0); }

header { background-color: rgba(255, 255, 255, 0.95); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; width: 100%; top: 0; z-index: 999; box-shadow: 0 2px 15px rgba(0,0,0,0.05); backdrop-filter: blur(5px); }
header .header-logo h1 { font-size: 24px; font-weight: 900; color: #e84393; letter-spacing: 1px; }
header .header-nav { display: flex; gap: 30px; }
header .header-nav a { font-size: 16px; font-weight: 500; color: #555; transition: color 0.3s ease; }
header .header-nav a:hover { color: #e84393; }

@media (max-width: 768px) {
	header .header-nav { display: none; }
}

#hero-section { padding: 160px 5% 100px; background: linear-gradient(135deg, #ffeaa7 0%, #ffcdda 100%); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 85vh; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; }
#hero-section .hero-title { font-size: 52px; font-weight: 900; color: #d63031; margin-bottom: 25px; line-height: 1.2; }
#hero-section .hero-subtitle { font-size: 22px; font-weight: 500; color: #2d3436; max-width: 800px; margin-bottom: 50px; }
#hero-section .hero-media { width: 100%; max-width: 800px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(214,48,49,0.15); }

@media (max-width: 960px) {
	#hero-section .hero-title { font-size: 42px; }
	#hero-section .hero-subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
	#hero-section { padding: 120px 5% 80px; min-height: 70vh; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }
	#hero-section .hero-title { font-size: 32px; }
	#hero-section .hero-subtitle { font-size: 16px; }
}

#origin-section { padding: 120px 5%; background-color: #fff; }
#origin-section .origin-title { text-align: center; font-size: 38px; font-weight: 900; color: #e84393; margin-bottom: 60px; }
#origin-section .origin-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 50px; }
#origin-section .origin-item { display: flex; gap: 40px; align-items: flex-start; background: #fff0f5; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: transform 0.3s ease; }
#origin-section .origin-item:hover { transform: translateX(10px); }
#origin-section .origin-left { flex: 0 0 120px; font-size: 56px; font-weight: 900; color: #fd79a8; line-height: 1; text-align: center; }
#origin-section .origin-right { flex: 1; }
#origin-section .origin-subtitle { font-size: 26px; font-weight: 700; margin-bottom: 15px; color: #2d3436; }
#origin-section .origin-text { font-size: 17px; color: #636e72; text-align: justify; line-height: 1.8; }

@media (max-width: 768px) {
	#origin-section .origin-item { flex-direction: column; gap: 20px; padding: 30px; text-align: center; }
	#origin-section .origin-left { flex: auto; font-size: 42px; margin: 0 auto; }
}

#meaning-section { padding: 120px 5%; background-color: #fdf5f6; }
#meaning-section .meaning-title { text-align: center; font-size: 38px; font-weight: 900; color: #e84393; margin-bottom: 60px; }
#meaning-section .meaning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
#meaning-section .meaning-item { background: #fff; padding: 50px 30px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(232,67,147,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; border-top: 5px solid #fd79a8; }
#meaning-section .meaning-item:hover { transform: translateY(-15px); box-shadow: 0 15px 40px rgba(232,67,147,0.1); }
#meaning-section .meaning-subtitle { font-size: 24px; font-weight: 700; color: #d63031; margin-bottom: 20px; }
#meaning-section .meaning-text { font-size: 16px; color: #636e72; line-height: 1.8; }

@media (max-width: 1280px) {
	#meaning-section .meaning-grid { gap: 30px; }
}

@media (max-width: 960px) {
	#meaning-section .meaning-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	#meaning-section .meaning-grid { grid-template-columns: 1fr; }
	#meaning-section .meaning-item { padding: 40px 20px; }
}

#gifts-section { padding: 120px 5%; background-color: #fff; }
#gifts-section .gifts-title { text-align: center; font-size: 38px; font-weight: 900; color: #e84393; margin-bottom: 60px; }
#gifts-section .gifts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1280px; margin: 0 auto; }
#gifts-section .gifts-item { border-radius: 15px; overflow: hidden; background: #fffcfd; border: 1px solid #ffeff4; box-shadow: 0 8px 25px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
#gifts-section .gifts-item:hover { transform: translateY(-8px); }
#gifts-section .gifts-media { width: 100%; height: 220px; overflow: hidden; }
#gifts-section .gifts-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
#gifts-section .gifts-item:hover .gifts-image { transform: scale(1.05); }
#gifts-section .gifts-content { padding: 30px; }
#gifts-section .gifts-subtitle { font-size: 22px; font-weight: 700; color: #2d3436; margin-bottom: 12px; }
#gifts-section .gifts-text { font-size: 15px; color: #636e72; line-height: 1.6; }

@media (max-width: 1280px) {
	#gifts-section .gifts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
	#gifts-section .gifts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	#gifts-section { padding: 80px 5%; }
}

@media (max-width: 500px) {
	#gifts-section .gifts-grid { grid-template-columns: 1fr; }
}

footer { background-color: #2d3436; color: #fff; padding: 60px 5% 40px; text-align: center; }
footer .footer-text { font-size: 15px; opacity: 0.7; margin-bottom: 20px; }
footer .footer-nav { display: flex; justify-content: center; gap: 30px; }
footer .footer-nav a { font-size: 14px; opacity: 0.7; transition: opacity 0.3s ease; letter-spacing: 1px; }
footer .footer-nav a:hover { opacity: 1; color: #fd79a8; }

@media (max-width: 500px) {
	footer .footer-nav { flex-direction: column; gap: 15px; }
}