@charset "utf-8";
/**{
  border: 1px dotted red;
}*/
@keyframes rotarImagenes {
  0%, 33% { opacity: 1; z-index: 1; }
  34%, 100% { opacity: 0; z-index: 0; }
}


/*Logo*/
main > h1.logo {
  font-size: 1.8em;
  background: linear-gradient(90deg, var(--color-verde-oscuro) 35%, var(--color-verde-claro) 50%, var(--color-verde-oscuro) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 0;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.6));
}
/*Imatges*/
img[src="./img/noticias/pedra_seca.jpeg"],
img[src="./img/noticias/pedra_seca2.jpeg"] {
  width: 100%;
  height: auto;
  max-height: 30rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 6px -2px rgba(0, 0, 0, 0.9);
}
/*Galeria*/
.galeria {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 60%;
  height: 25rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 2rem;
  margin: 0 auto; 
}

.galeria img {
  position: absolute;
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.7);
}
.galeria img:first-child {
  opacity: 1;
  z-index: 1;
}
.galeria img:nth-child(1) {
  animation: rotarImagenes 18s infinite;
}

.galeria img:nth-child(2) {
  animation: rotarImagenes 18s infinite 6s;
}

.galeria img:nth-child(3) {
  animation: rotarImagenes 18s infinite 12s;
}
/********************/
/*****VERSIÓ PC******/
@media (width >= 992px) {
  li a[href="blog.html"]{
    background: linear-gradient(90deg, var(--color-rojo-oscuro) 0%, var(--color-rojo-claro) 50%);
    border-radius: 4px;
    color: var(--color-beige-claro) !important;/*Machaque els estils anteriors, si no no es mostra el colro de la lletra*/
    filter: drop-shadow(1px 1px 1px rgba(36, 4, 7, 0.9));
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.3s ease-in-out;
  }
  li a[href="blog.html"]:hover {
      color: whitesmoke!important; /* 🔹 Blanco roto */
  }
  img[src="./img/noticias/pedra_seca.jpeg"],
  img[src="./img/noticias/pedra_seca2.jpeg"] {
    width: calc(100% - 2rem); 
    margin: 1rem auto;
    max-height: 40rem;
    display: block;
  }
  .galeria img {
    border: 1px solid var(--color-verde-oscuro);
    border-radius: 3px;
  }
}