/*Primera pàgina*/

#parc-aiguestortes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    text-align: left;
  }

  #parc-aiguestortes > div {
    flex: 1 1 48%;
    min-width: 350px;
    padding: 1em;
  } 

  .imatges1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
  }
  
  .imatges1 > div {
    flex: 1 1 45%; /* dues columnes */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .imatges1 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  #foto3 {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5em;
    display: block;
    margin: 0 auto 1em auto;
  }

  
  /* responsive: una sola columna en pantalles petites */
  @media (max-width: 768px) {
    #parc-aiguestortes > div {
      flex: 1 1 100%;
    }
  
    .imatges1 > div {
      flex: 1 1 100%;
    }
  }

/*modal container*/

.modal-container {
  display: flex;
  background-color: rgb(0, 0, 0, 0.63);
  align-items: center;
  justify-content: center;
  position: fixed;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999
}

.modal {
  background-color: #717e6a;
  width: 800px;
  max-width: 100%;
  padding: 30px 50px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal h1 {
  color: #604a33;
  text-align: center;
}
.modal h2{
  color: #604a33;
}
.modal p {
  color: #bbcbb7;
  padding-bottom: 1em;
}

#foto3 {
  width: 300px;
  height: auto;
  align-items: center;
}

   /*Botons per ensenyar*/
   .show{
    opacity: 1;
    pointer-events: auto;
  }