   @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.header-bg {
  background-color: #2d3e50;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
	overflow-x: hidden;
	  
}

.site-header-card {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 48px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: #2d3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #007b83;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #007b83;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.ticket {
  background-color: #e1f5f8;
  color: #007b83;
}

.btn.member {
  background-color: #2d3e50;
  color: #ffffff;
}
		
		.swiper {
  width: 100%;
  height: 300px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}


		.category-section {
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
  margin-top: 0;
}

.category-divider {
  font-size: 0.9rem;
  color: #666;
  margin: 16px 0 8px;
}
		
.category-buttons {
  margin: 15px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-buttons a {
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #e6f0ff;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background-color 0.2s;
  border: 1px solid transparent;
}

.category-buttons a:hover,
.category-buttons a.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
#category-dropdown {
  margin: 0;
  padding: 8px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 100px;
  margin-top: 50px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
}

.card .card-body {
  padding: 16px;
}

.card .category {
  font-size: 0.85rem;
  color: #007bff;
  margin-bottom: 6px;
  font-weight: 500;
}

.card .title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.card .time {
  font-size: 0.9rem;
  color: #777;
}

.card .title a {
  text-decoration: none;
  color: inherit;
}

.card .title a:hover {
  text-decoration: underline;
}


#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

#pagination button {
  padding: 8px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

#pagination button:hover {
  background-color: #f0f0f0;
}

#pagination button.active {
  background-color: #007bff;
  color: white;
  border: none;
  font-weight: bold;
}

#pagination button:disabled {
  background-color: #ddd;
  color: #888;
  cursor: not-allowed;
}

#pagination input[type="number"] {
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 70px;
}
		
		

.site-footer {
  background-color: #2d3e50;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px 10px 10px;
  margin-top: 80px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  font-size: 0.95rem;
  height: 60px;

}
		.site-footer p {
  margin: 0;
		}
	
		
		.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #2d3e50;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 260px;
  max-width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1500;
}

.mobile-overlay.active {
  display: block;
}


@media screen and (max-width: 768px) {
   

   nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
		
		.mobile-menu a {
  color: #2d3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
		}
	
	main{
			width: 90%;
			margin: 0 auto;
		}
