/* ==========================
   RESET Y ESTILOS BASE
=========================== */
body {
  margin: 0;
  padding: 0;
  font-family: Libre Franklin;
  background-color: #282725;
  color: #d1cec9;
  text-align: center;
}

main {
  background-color: #f0ece4;
}

/* ==========================
   NAVEGACIÓN
=========================== */
.section_mobile {
  display: none;
}

#casa {
  width: 8vw;
}

#casa img {
  width: 100%;
  height: 95%;
  object-fit: cover;
}

.navegation {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 9vh;
  background-image: linear-gradient(to bottom right, #f7bb5c, #cc830c);
  opacity: 90%;
  position: fixed;
  top: 0;
  z-index: 1;
  border-bottom: 2px solid black;
}

.navegation li {
  list-style: none;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 20%;
  height: 9vh;
}

.navegation li a {
  font-family: 'Special Elite';
  text-decoration: none;
  color: black;
  font-weight: 550;
  text-transform: uppercase;
  font-size: 1.5em;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aqui {
  background-color: #6b6b6a;
  background-image: linear-gradient(to bottom, #bfbfbf, #9c9c9c, #9c9c9c, #bfbfbf);
}

.navegation li:hover {
  background-color: #f09f07;
  transition: 0.8s;
}

#btn_menu {
  display: none;
}

.icon_menu {
  display: none;
}

/* ==========================
   FOOTER
=========================== */
footer {
  background-image: linear-gradient(to bottom, #fcd465, #cc830c);
  padding: 1.5rem 0;
  text-align: center;
  color: #362202;
  display: block;
  min-height: 100px;
}

.texto_footer {
  font-family: 'Libre Franklin';
  line-height: 4vh;
  font-weight: 900;
  font-size: 1em;
}

.contactoFooter {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* ==========================
   EXPERIENCIA (BADGE METÁLICO)
=========================== */
#experiencia {
  background: linear-gradient(135deg, #525252, #808080);
  padding: 5px 20px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 auto;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.texto-metalico {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.2rem;
  color: #cccccc;
  text-shadow: 
    0 1px 0 rgba(13, 13, 13, 0.8),
    0 -2px 2px rgba(0, 0, 0, 0.6),
    0 -1px 6px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(0, 0, 0, 0.3);
}

/* ==========================
   MEDIA QUERIES
=========================== */
@media screen and (max-width: 1100px) {
  .navegation li a {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 900px) {
  .section_mobile {
    visibility: visible;
    height: 9vh;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to bottom right, #fcd465, #cc830c);
    font-family: 'Special Elite';
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 1.2em;
    text-shadow: 2px 2px #000000;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .section_mobile img {
    width: 50px;
    height: 50px;
  }

  #casa img {
    width: 30px;
    height: 30px;
  }

  #casa {
    width: 100%;
    background-color: #f0ece4;
  }

  .navegation {
    position: fixed;
    left: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 100%;
    height: 380px;
    font-size: 1em;
  }

  .navegation li {
    padding-top: 0.75vh;
    width: 100%;
  }

  #btn_menu:checked ~ .navegation {
    left: 0;
    transition: 0.5s;
    z-index: 2;
  }

  .icon_menu {
    padding: 2vh 3vw;
    z-index: 3;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    height: 2.5vh;
    background-color: #f0ece4;
    border-radius: 4px;
    margin: 1vh 1vw;
  }

  .icon_menu:hover {
    background-color: #fcd465;
  }

  .texto_footer {
    line-height: 5vh;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 350px) {
  .texto_footer {
    line-height: 5vh;
    font-size: 0.7em;
  }
}