body {
  background-image: url("../img/bg_texture.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.logo-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
}

.boudoir:hover {
  background-color: black;
  color: white;
}

#hero {
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 2vw;
}

@font-face {
  font-family: 'Ricordi Nobilli';
  src: url("../TT\ Ricordi\ Trial\ Nobili.ttf");
}

#hero #intro {
  text-align: center;
  color: black;
  width: 50%;
  h1 {
    font-family: 'Ricordi Nobilli';
    font-size: 6em;
    text-align: left;
  }
}

#hero #intro_img {
  width: 20%;
  height: 100%;
  margin: 1vh 2vw 1vh 2vw;
  display: block;
}

#hero #intro_img img {
  margin-top: 20vh;
  width: 100%;
  border-radius: 200px 200px 0px 0px;
}

#last-photos {
  margin-left: 2vw;
}

#carrusel {
  margin: 2vh 2vw;
  height: 60vh;
}

div .carousel-item {
  height: 60vh;
}

.carousel-item img {
  border-radius: 15px;
}

/* Si necesitas ajustar individualmente alguna imagen */
#jaguelin {
  width: 60%;
  height: 100%;
  object-position: top; /* Ajusta la posición vertical */
  /*recorta la imagen para que sea cuadrada*/

}

#nina_cabrea {
  width: 60%;
  height: 100%;
  object-position: center 30%; /* Ajusta horizontal y verticalmente */
}

#payasa {
  width: 60%;
  height: 100%;
  object-position: left center; /* Ajusta horizontal y verticalmente */
}

footer {
  background-color: rgb(43 48 53);
  color: white;
  text-align: center;
  padding: 1vh 0;
  position: static;
  bottom: 0;
}

footer a {
  color: white;
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    height: 70svh;
  }

  #hero #intro {
    width: 100%;
  }

  #hero #intro_img {
    width: 100%;
  }

  #ninacabrea {
    width: 100%;
    object-position: 60% 30%;
  }
}