:root {
  --color-bikes: #e3007a;
  --color-grilling: #c49b6c;
  --color-trails: #00a14b;
  --color-life: #ff0000;
}

/* HEADER */
.site-header {
  width: 100%;
  height: 80px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: fixed;
  z-index: 100;
}

.logo img {
  height: auto;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-family: 'DINCondensed', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

/* Hover de submarcas */
.link-bikes:hover { color: var(--color-bikes); }
.link-grilling:hover { color: var(--color-grilling); }
.link-trails:hover { color: var(--color-trails); }
.link-life:hover { color: var(--color-life); }

.btn-contacto {
  display: inline-block;
  padding: 10px 24px;
  background-color: #e60023; /* rojo corporativo */
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contacto:hover {
  background-color: #c4001d; /* rojo más oscuro */
  transform: scale(1.05);
}

.btn-contacto:active {
  transform: scale(0.97);
}
/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links {
    display: none;
  }
}

