/* Add a black background color to the top navigation */
 nav {
    position: absolute;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    width: 99%;
    margin: auto;
    display: flex;
    justify-content: space-between;
   /* box-shadow: 0px 2px 10px gainsboro;*/
    z-index: 5;
    margin-top: 30px;
    left: 4.5px;
    right: 4.5px;
    top: 0px;
    height: 72px;
    align-items: center;
  }
  
  nav * {
    font-family: 'Josefin Sans';
  }

 


  #nav-logo {
    height: 150%;
    margin-left: 20px;
    margin-top: -40px;
    margin-bottom: -40px;
    cursor: pointer;
  }

  .floating-icon {
    position: fixed;
    z-index: 1000;
    top: 50%; /* Centra verticalmente */
    right: 20px; /* Posición desde el borde derecho */
    transform: translateY(-50%); /* Centra verticalmente */
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Elimina la decoración del enlace */
  }
  
  .floating-icon img {
    width: 130%; /* Ajusta el tamaño de la imagen */
  }
  
  /* Style the links inside the navigation bar */
  nav a {
    float: left;
    text-align: center;
    padding: 14px 1.18vw;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #443B39;;
  }
  
  /* Change the color of links on hover */
  nav a:hover {
    background-color: #ddd;
    color: black;
    border-radius: 20px;
    
  }
  
  /* Add a color to the active/current link */
  nav a.active {
    background-color: #F0CB24;
    color: white;
    border-radius: 20px;
  }



  #nav-button-download {
    border-radius: 10px;
    background-color: #F0CB24;
    color: white;
    height: 50px;
    width: 187px;
    font-size: 20px;
    font-family: 'Staatliches';
    border-color: white;
    margin: 0px 10px;
    border-width: 0px;
    cursor: pointer;
    transition: transform 0.1s ease;
  }

  #nav-button-download:hover {
    transform: scale(1.025);
    background-color: black;
    box-shadow: 1px 1px 1px gray;
  }
  
#menu-button {
  background: none; 
  border: none;
  padding: 10px;
  margin-right: 10px;
  cursor: pointer;
}

#menu-button.active {
  background: #F0CB24;
  border-radius: 10px;

}

#nav-hidden {
  display: flex;
  width: 100%;
  height: 72px;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

#nav-hidden #nav-end {
  display: flex;
}

#nav-hidden-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #F0CB24;
  border-bottom: 1px solid #F0CB24;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  background-color: white;
}

#nav-hidden-options a {
  padding: 2px;
  margin-bottom: 5px;
  font-family: "Staatliches";
  font-size: 20px;
  border-bottom: 1px solid black;
  width: 90%;
  color: black;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

#nav-hidden, #nav-hidden-options {
  display: none;
}

@media (max-width: 975px) {
  nav {
    display: none !important;
  }

  #nav-hidden {
    display: flex;
  }

  #nav-logo {
    height: 28vw;
    max-height: 150px;
    margin: 0%;
    margin-left: 2vw;

  }

  #nav-hidden {
    height: 10vw;
    max-height: 100px;
  }

  #menu-button {
    margin-right: 9.4vw;
    padding: 0%;
  }

  #menu-button img:first-child {
    width: 4vw;
    height: 2.5vw;
    max-height: 32px;
    max-width: 50px;
    padding: 8px;
  }
}








