/* Variables */
:root {
  --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
  --body-bg-image: url(../Imagenes/fondos/kao_boon_blue.gif);
  --content: #253a6e;
}

/* Estilos generales */
body {
  font-family: Fredoka, sans-serif;
  margin: 0;
  background-color: #08031A;
  background-size: 65px;
  background-image: var(--body-bg-image);
  color: #fceaff;
}

.Icono_yo {
  width: 100%;
  border-radius: 50%;
  border: 6px solid #f4b5c1;
}

* {
  box-sizing: border-box;
}

/* Layout principal */
#container {
  max-width: 70%;
  margin: 0 auto;
}

#container a {
  color: #f4b5c1;
  font-weight: bold;
}

/* Navbar */
#navbar {
  height: 40px;
  background-color: #281646;
  width: 100%;
  margin: 0 auto 5px auto;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

#navbar li a {
  color: #f4b5c1;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #a49cba;
  text-decoration: underline;
}

/* Flex layout */
#flex {
  display: flex;
}

aside {
  background-color: #354f90;
  width: 200px;
  padding: 20px;
  font-size: smaller;
}

main {
  background-color: #405eac;
  flex: 1;
  padding: 20px;
  order: 2;
}

/* Sidebars */
#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

/* Footer */
footer {
  background-color: #281646;
  width: 100%;
  height: 40px;
  padding: 1px;
  text-align: center;
}

/* Tipografía */
h1, h2, h3 {
  color: #d6def3;
}

h1 {
  font-size: 25px;
}

strong {
  color: #f4b5c1;
}

/* Caja especial */
.box {
  background-color: #281646;
  border: 2px solid #f4b5c1;
  padding: 10px;
}

/* Barra superior */
#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #281646;
}

/* === BLOG === */

/* Mostrar y ocultar entradas */
.entrada-activa {
  display: block;
  margin-bottom: 20px;
}

.entrada-oculta {
  display: none;
}

/* Destacar entrada reciente */
.entrada-reciente {
  position: relative;
  padding: 20px;
  border-radius: 8px;
}



/* Etiqueta de “¡Nuevo!” */
.etiqueta-nueva {
  background-color: #a6c9f2; /* azul cielo */
  color: #004080;           /* azul profundo */
  font-size: 0.8em;
  font-weight: 700;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
  vertical-align: middle;
  font-family: 'Fredoka', sans-serif;
  user-select: none;
  box-shadow: 0 0 5px rgba(166, 201, 242, 0.6);
}

/* Enlace resaltado del menú */
.reciente-link {
  background-color: #a6c9f2;
  color: #004080 !important;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.reciente-link:hover {
  background-color: #7fa8e1;
  color: #002850 !important;
}

/* Responsive */
@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }
}
