/* === Főmenü stílusok === */
nav ul li a {
  color: #111111 !important; /* sötétszürke, jól látszik a fehér háttéren */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

/* Hover effekt */
nav ul li a:hover {
  color: #ff3300 !important;
  text-shadow: 0 0 8px rgba(255, 51, 0, 0.6);
  transform: scale(1.05);
}

/* Aktív (aktuális oldal) menüpont kiemelése */
nav ul li.current-menu-item a {
  color: #ff3300 !important;
  font-weight: 700;
  border-bottom: 2px solid #ff3300;
}

.menu-button a {
    background-color: #d00000;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 6px;
    border: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.25s ease-in-out;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.menu-button a:hover {
    background-color: #ff3300;
    box-shadow: 0 0 15px rgba(255, 60, 0, 0.8);
    transform: translateY(-2px) scale(1.05);
}
