
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', sans-serif;
  background: linear-gradient(to bottom, #2c3e50 0%, #f4f6f9 100%);
  color: #2c3e50;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 24px 0;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.fill-text {
  color: transparent;
  -webkit-text-stroke: 0.1px white;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 3vw;
}

.fill-text:before {
  content: attr(data-text);
  -webkit-text-stroke: 0.1px white;
  position: absolute;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  overflow: hidden;
  text-align: center;
}

.card.welcome-card {
  background-color: rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 680px;
  color: #2c3e50;
  margin-bottom: 16px;
} 

.card.welcome-card h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  margin-top: 0px;
}

.card.welcome-card p {
  font-size: 1.1rem;
  margin: 0;
  color: #555;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 720px;
}

body {
  cursor: url("/static/dist/assets/img/chicken.png") 16 16, auto;
}
.card-btn {
  display: block;
  background: linear-gradient(135deg, #007bff, #00aaff);
  color: white;
  text-decoration: none;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
}

/* 飛行 */
#three-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;    /* 讓底下的按鈕、連結仍可點擊 */
  z-index: 999;            /* 確保在最上層 */
}
#three-canvas {
  width: 100%; height: 100%;
  display: block;          /* 去除預設 inline-block 的空隙 */
}



.hidden-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s;
  z-index: 999;
}
.hidden-icon.reveal {
  opacity: 1;
}
.orange {
  background-image: url("../assets/img/orange.png");
}
.crown {
  background-image: url("../assets/img/crown.png");
}
.easter-transition {
  position: fixed;
  inset: 0;
  background-color: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in;
}

.transition-img {
  max-width: 80vw;
  max-height: 80vh;
  animation: pop 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
