@font-face {
  font-family: 'Bungee';
  src: url('./fonts/bungee.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Subway';
  src: url('./fonts/subway.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Base general */
body {
  font-family: 'Subway', sans-serif;
  background-color: #C5E948;
  color: #000;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* HERO */
.hero {
  background: url('bg.png') no-repeat center center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  text-align: center;
}

.logo {
  max-width: 80%;
  height: auto;
}

/* Secciones */
.section {
  padding: 2rem 1rem;
  text-align: center;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.section ul li {
  margin: 0.5rem 0;
  font-size: 2rem; /* Ajustado para no romper layout móvil */
  font-family: 'Subway', sans-serif;
}

/* Prints */
.prints-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

.prints {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.print-column {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 8px;
}

.print-column h3 {
  margin-bottom: 0.5rem;
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
}

.prints ul li {
  font-family:  sans-serif;
  font-size: 1em !important;
  text-align: left;
}

.obra {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/* Pop-Up Ropa */
.popup-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 4em;
}

.popup-brand {
  background: rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 6px;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  text-align: center;
}

/* Desktop layout */
@media (min-width: 768px) {
  .prints {
    flex-direction: row;
    justify-content: space-between;
  }

  .popup-grid {
    flex-direction: row;
    justify-content: space-around;
  }

  .section ul li {
    font-size: 5em; /* Como tenías originalmente para desktop */
  }

  .print-column {
    width: 48%;
  }
}