@font-face {
  font-family: 'titulo-h1';
  src: url('/theme/fuentes/fanzine-title.ttf') format('truetype');
}

@font-face {
  font-family: 'titulo-h2';
  src: url('/theme/fuentes/supercomputer.ttf') format('truetype');
}

/* Estética general */
body {
  background-color: #fffaf5;
  color: #3a2f25;
  font-family: 'Verdana', Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 3px;
  padding: 5px;
}

/* Títulos con aire retro */
h1 {
  font-family: 'titulo-h1';
  font-size: 40px;
  color: #a84c00;
  margin-bottom: 0.2em;
}

h2 {
  font-family: 'titulo-h2';
  font-size: 35px;
  color: #c1661c;
  margin-bottom: 0.4em;
}

/* Textos */
p, li {
  font-family: 'Verdana', Geneva, Tahoma, sans-serif;
  font-size: large;
}

li {
  font-family: monospace;
}

/* Bloques de código */
pre {
  background-color: #fff3e5;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  border-left: solid #ffa96d 4px;
  white-space: pre-line;
  border-radius: 6px;
  margin-bottom: 1em;
}

/* Logo */
#logo {
  width: 350px;
  height: 150px;
  display: block;
  margin: 20px auto;
}

/* Lista de artículos */
#lista_articulos {
  margin-top: 12px;
  padding: 20px;
  background-color: #fbe4ce;
  border: 2px solid #e0b68d;
  border-radius: 12px;
}

/* Alineación */
#alinea_div_centro {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Pie de página */
#pie_pagina {
  background-color: #f0d3ad;
  padding: 12px;
  border: solid #d19c72 1px;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 8px;
}

/* Botón leer más */
#leer_mas {
  background-color: #f89d3c;
  padding: 6px 12px;
  font-weight: bold;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 8px;
  margin-top: 10px;
}

#enlace_leer:link,
#enlace_leer:visited {
  font-weight: bold;
  font-style: italic;
  color: white;
  text-decoration: none;
}

#enlace_leer:hover {
  color: #fff3c1;
}

/* Botones de etiquetas estilo HI7903B */
#botonitos {
  display: inline-block;
  background-color: #f8d8b3;
  color: #4a3e2f;
  padding: 4px 10px;
  font-size: 0.9rem;
  border: 1px solid #d7b28c;
  border-radius: 12px;
  font-family: monospace;
  text-decoration: none;
  margin: 4px;
  transition: background-color 0.3s ease;
}

#botonitos:hover {
  background-color: #e7c5a1;
  color: #2c261f;
  cursor: pointer;
}

/* Menú sin JS */
.menu-navegacion {
  font-family: Arial, sans-serif;
}

.menu-principal {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  background-color: #deb887;
  border-radius: 8px 8px 0 0;
}

.elemento-menu {
  position: relative;
}

.elemento-menu a {
  display: block;
  color: #3b2c1f;
  text-decoration: none;
  padding: 12px 16px;
  transition: background-color 0.3s ease;
}

.elemento-menu a:hover {
  background-color: #d4a66a;
}

/* Submenú */
.submenu {
  display: none;
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #f5e1c9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
}

.submenu li {
  border-top: 1px solid #e1c3a1;
}

.submenu li:first-child {
  border-top: none;
}

.submenu a {
  padding: 12px 16px;
  color: #3b2c1f;
}

.submenu a:hover {
  background-color: #f2d0a9;
}

/* Mostrar submenú al hover */
.elemento-menu:hover .submenu {
  display: block;
}

/* Imágenes responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

/* Para celulares */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 10px;
  }

  h1 {
    font-size: 28px;
    text-align: center;
  }

  h2 {
    font-size: 22px;
    text-align: center;
  }

  #logo {
    width: 90%;
    height: auto;
  }

  .menu-principal {
    flex-direction: column;
  }

  .elemento-menu a {
    text-align: center;
    padding: 10px;
  }

  #lista_articulos {
    padding: 10px;
  }
}