@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins&display=swap');

/* === CONFIGURACIÓN GENERAL === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f7f5f2;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  user-select: none;
}

/* ======== BARRA DE NAVEGACIÓN CON HAMBURGUESA ======== */
header {
  background-color: #d1a469;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Anton', sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  font-family: 'Anton', sans-serif;
  color: #511b39;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-weight: bold;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #c1532c;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.admin-link {
  color: white;
  font-size: 0.9rem;
  font-family: 'Anton', sans-serif;
}

.admin-link i {
  margin-right: 5px;
}

/* ======== MENÚ HAMBURGUESA ======== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #511b39;
}

/* ======== RESPONSIVE (MÓVILES) ======== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #d1a469;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }

  .nav-links.activo {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

/* === FOOTER SIMPLE === */
.footer-simple {
  background-color: #511b39;
  color: #f1eada;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-simple p {
  margin: 0;
}
