/* Encabezado estilo barra superior */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 10px 20px;
  color: white;
  position: relative;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Eczar', serif;
}

/* Menú hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Navegación desplegable */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

/* Redes sociales */
.social-icons a {
  margin-left: 15px;
  color: white;
  font-size: 20px;
}

/* Responsive: menú hamburguesa visible en móvil */
@media screen and (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    padding: 10px 0;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

