* {
  box-sizing: border-box;
}
.logo {
  display: none;
  /* width: 80%;
  max-width: 1000px;
  margin: 0 auto; */
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fffbea;
  color: #3b2f00;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 2rem;
}

header .mascot {
  height: 100px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  background-color: #ed9b1f;
  z-index: 999;
  border-bottom: 1px solid #e2d8a4;
}

.nav-left,
.nav-center,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-center {
  justify-content: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.menu-toggle,
.login-icon {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #3b2f00;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px; /* adjust based on your header height */
  left: 1rem;
  background: white;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu a {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #3b2f00;
  display: block;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-menu a:hover {
  background: #fffbea;
}

.site-logo {
  height: 40px;
  max-width: 100%;
}

.logo {
  display: none; /* hide header logo to avoid repetition */
}

.tagline {
  display: none; /* optional: move tagline elsewhere or keep it in main body */
}

/* Optional: mobile tweak */
@media (max-width: 600px) {
  .site-logo {
    height: 32px;
  }

  .menu-toggle,
  .login-icon {
    font-size: 1.25rem;
  }
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.card img {
  width: 96px;
  height: auto;
  /*max-height: 96px;*/
  object-fit: contain;
  flex-shrink: 0;
}


.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffcc00;
  color: #3b2f00;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: bold;
}

aside {
  text-align: center;
  margin-top: 2rem;
}

.walk {
  height: 80px;
  animation: wiggle 4s infinite ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(10px); }
  50% { transform: translateX(-10px); }
  75% { transform: translateX(5px); }
}

footer {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #7c6514;
}