/* Hamburger Menu Overlay Styles - African Inspired */
.menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(135deg, #4b0082 0%, #1e90ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay .menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}
.menu-overlay .menu-items a {
  color: #fff;
  text-decoration: none;
  padding: 0.7em 2em;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.menu-overlay .menu-items a:hover {
  background: rgba(255,255,255,0.12);
  color: #ffe082;
}
.menu-overlay .african-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
  background: url('../assets/images/african-pattern.svg') repeat;
}
.menu-overlay .social-icons {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
}
.menu-overlay .social-icons a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.2s;
}
.menu-overlay .social-icons a:hover {
  color: #ffe082;
}
.menu-overlay .contact-info {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
@media (min-width: 769px) {
  .menu-overlay {
    display: none !important;
  }
}
