/* ===================================================
   layout.css
   Estructura visual general de la página
   Incluye: Header, navegación, footer
   =================================================== */


/* ======================================
   1. HEADER PRINCIPAL (site-header)
   ====================================== */

.site-header {
  background-color: #5b52bc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px 20px;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  max-height: 100px;
  overflow: hidden;
}

.site-logo {
  max-height: 210px;
  height: auto;
  width: auto;
  display: block;
  padding: 5px;
}


/* ======================================
   2. MENÚ DE NAVEGACIÓN
   ====================================== */

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
    font-family: "Poppins", "Sans-serif";

}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s ease;
    font-family: "Poppins", "Sans-serif";

}

.nav-menu li a:hover {
  color: #0077cc;
}



/* ======================================
   3. FOOTER
   ====================================== */

footer {
  background-color: #5b52bc;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}

footer .rrss {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

footer .rrss a {
  text-decoration: underline;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

footer ul li {
  display: inline-block;
}

footer ul li a img {
  width: 30px;
  height: 30px;
}

footer ul li a:hover img {
  transform: scale(1.5);
}

