/* =====================
   Menu overlay
===================== */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#menu-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}


.menu-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px 0;
}

.menu-logo {
  width: 100%;
  max-width: 480px;
  margin-bottom: 32px;
}

.menu-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-bio {
  max-width: 740px;
  text-align: center;
  margin-bottom: 52px;
}

.menu-bio p {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
}

.menu-bio p + p { margin-top: 16px; }

.menu-bio a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-bio a:hover { opacity: 0.6; }

.menu-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}

.menu-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin-bottom: 56px;
}

.menu-card {
  background: #EFEFEF;
  border-radius: 20px;
  padding: 25px;
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.15s ease;
}

.menu-card:hover { transform: translateY(-3px); }

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.menu-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.menu-card:hover img {
  animation: wiggle 0.4s ease infinite;
}

.menu-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 400;
}

.menu-footer {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.9;
  font-size: 1.125rem;
}

.menu-footer .location { font-weight: 700; }

.menu-footer a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-footer a:hover { color: #F192FF; opacity: 1; }

.menu-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.menu-social a {
  display: block;
  width: 22px;
  height: 22px;
}

.menu-social a:hover img { filter: invert(65%) sepia(100%) saturate(500%) hue-rotate(260deg) brightness(100%) contrast(100%); }
.menu-social img { width: 100%; height: 100%; }

.menu-wave {
  width: 100%;
  display: block;
  margin-top: auto;
}

.menu-wave img {
  width: 100%;
  display: block;
}

@media (max-width: 600px) {
  .menu-wave {
    overflow-x: clip;
  }
  .menu-wave img {
    width: 180%;
    max-width: none;
    margin-left: -40%;
  }
  .menu-inner {
    padding-top: 80px;
  }
  .hamburger {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 44px;
    height: 44px;
  }
}

/* ── Hamburger / X toggle ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 28px 32px;
  z-index: 220;
}

.hamburger {
  position: relative;
  display: flex;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3.5px;
  background-color: #111;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s ease;
}

.hamburger span:first-child {
  transform: translateY(-5px);
}

.hamburger span:last-child {
  transform: translateY(5px);
}

/* Animate to X when menu is open */
body.menu-open .hamburger span:first-child {
  transform: rotate(45deg);
}

body.menu-open .hamburger span:last-child {
  transform: rotate(-45deg);
}
