/* Menu-specific styles */
.header-menu {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgb(248, 236, 239);
  backdrop-filter: blur(20px);
  height: 56px; /* Reduced height from 68px */
  will-change: height;
  /* Remove overflow hidden to allow logo descenders */
  overflow: visible;
  /* Remove border from here */
}

.header-content {
  width: 100%;
  height: auto;
  overflow: hidden; /* Apply overflow hidden here instead for menu animation */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Add border as a pseudo-element that doesn't animate */
.header-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  pointer-events: none;
  width: 100%;
  max-width: calc(1200px - 36px); /* Match padding of header-content */
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  height: 56px; /* Match new header height */
  position: relative;
  z-index: 10;
  cursor: pointer;
  width: 100%;
  overflow: visible; /* Allow logo descenders to show */
}
.logo {
  font-family: var(--script-font), cursive;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4af37; /* Fallback color */
  text-align: left;
  pointer-events: none;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  z-index: 20; /* Above everything to prevent clipping */
  padding-left: 4px;
  margin-left: -4px; /* Adjust for padding */
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

.menu-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  will-change: transform;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

.menu-icon svg {
  width: 32px;
  height: 32px;
}

.menu-items {
  padding: 0 20px 16px 20px;
  background: transparent;
}

.menu-item {
  display: none; /* Hidden by default */
  width: 100%;
  padding: 12px 0;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: #464646;
  cursor: pointer;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  color: #d4af37;
}

.menu-item:active {
  color: #b8941f;
}

/* Remove unused styles */
