/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Baloo 2', cursive;
}

body {
  background-color: #2b3a45; /* celeste grisáceo oscuro */
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
header {
  background-color: #4db8ff; /* celeste */
  padding: 1rem 2rem;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.hamburger {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
}

/* MENÚ PRINCIPAL */
.nav-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #3399e6;
  border-radius: 5px;
}

/* DROPDOWN DE IDIOMAS */
.dropdown {
  position: relative;
  width: 100%;
  text-align: center;
}

.dropdown-toggle {
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  width: 100%;
  background-color: #4db8ff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: #3399e6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  background-color: #3399e6;
  border-radius: 5px;
  margin-top: 0.5rem;
  min-width: 150px;
}

.dropdown-menu a {
  padding: 0.5rem 1rem;
  text-align: center;
  color: #fff;
  display: block;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #4db8ff;
}

/* MAIN - TARJETAS */
main {
  flex: 1;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  z-index: 0;
}

.card:hover img {
  filter: blur(2px) brightness(0.8);
  transform: scale(1.05);
}

.card-text, .card-category {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.2rem 0.5rem;
  background-color: rgba(0,0,0,0.4);
  border-radius: 5px;
  margin: 0.2rem auto;
}

.card-text {
  font-family: 'Comic Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.card-category {
  font-size: 0.9rem;
}

/* BOTÓN IR A LA TIENDA */
.shop-button-container {
  text-align: center;
  padding: 1.5rem;
}

.shop-button {
  background-color: #4db8ff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-button:hover {
  background-color: #3399e6;
  transform: scale(1.05);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  background-color: #1f2a34;
  line-height: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}