/* ===== DISEÑO GENERAL ===== */
body {
  margin: 0;
  font-family: monospace;
  min-height: 100vh;

  background-image: url("assets/images/fondo.png");
  background-repeat: repeat;
}

/* ===== ENTRADA ===== */
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-area {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideFadeIn 1s ease forwards;
}

/* ===== TÍTULO ===== */
.menu-area h1 {
  color: #ff0;
  font-size: 50px;
  text-shadow: 2px 2px #000;
  margin-bottom: 30px;
}

/* ================================================= */
/* ===== CAJA ÚNICA ================================ */
/* ================================================= */

.sections {
  display: flex;
  justify-content: center;
}

/* CAJA (IMAGEN DE FONDO) */
.image-box {
  width: 800px;
  height: 800px;

  /* 🔴 si la imagen no existe, esto igual se ve */
  background-color: rgba(0,0,0,0.3);

  background-image: url("assets/images/fondoBox2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;

  align-items: center;
  justify-items: center;
}

/* ================================================= */
/* ===== IMÁGENES CLICKABLES ======================= */
/* ================================================= */

.section-links {
  display: contents;
}

.link-img {
  max-width: 250px;
  height: auto;

  background: none;
  border: none;
  box-shadow: none;

  cursor: pointer;
  image-rendering: pixelated;
  transition: transform 0.2s ease;
}

.link-img:hover {
  transform: scale(1.05);
}
