@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  width: 100%;
  height: 20vh;
  border-bottom: solid rgb(151, 222, 255) 1.5px;
  background-color: rgba(74, 127, 152, 0.982);
  align-items: flex-end;
  gap: 50vw;
}

.logo_div {
  width: 1vw;
  padding: 15px;
  margin: auto;
}

.logo {
  width: 15vh;
  border-radius: 50%;
}

.nav_div {
  width: 30vw;
  height: 30%;
  justify-content: flex-start;
  margin-right: 10%;
  margin-inline-start: 0%;
}

nav {
  width: 100%;
}

ul {
  display: flex;
  justify-content: flex-end;
  gap: 10%;
}

/* aca quite el punto de la lista de botones */
li {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

/*botones*/
a {
  text-decoration: none;
  color: rgb(198, 227, 240);
  font-size: 100%;
  font-weight: bold;
  margin-left: 80%;
  background-color: rgba(255, 121, 219, 0);
  padding: 5px 11px;
  border: solid rgba(107, 170, 199, 0) 1.5px; /*aca resumi todo en un renglon*/
  border-radius: 14px; /* acá redondeo esquinas */
}

/*utilizo grid*/
.main_index {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr 1fr 1.5fr;
  grid-template-rows: 0.5fr 0.2fr 0.2fr 3fr 0.5fr;
  grid-template-areas: ". titulo titulo titulo ." ". subtitulo subtitulo subtitulo ." ". . perro . ." ". adopciones adopciones adopciones ." ". . . . .";
}

.titulo_index {
  color: rgb(48, 84, 117);
  text-align: center;
  font-family: serif;
  font-size: 45px;
  grid-area: titulo;
  align-content: center;
}

.sub_index {
  color: rgba(158, 178, 191, 0.829);
  text-align: center;
  font-size: 22px;
  font-style: italic;
  grid-area: subtitulo;
  align-content: start;
}

.img_principal {
  grid-area: perro;
  width: auto;
  height: 35vh;
  align-content: start;
}

.perro {
  width: 100%;
  height: auto;
  box-shadow: 8px 8px 11px rgba(0, 0, 0, 0.1);
  border-radius: 3%;
  align-items: center;
  grid-area: adopciones;
  align-content: start;
}

.perro_callejeroindex {
  width: 100%;
  height: auto;
  border-radius: 3%;
}

.adopciones {
  text-align: center;
  color: rgba(40, 40, 40, 0.411);
  font-size: 150%;
  opacity: 80%;
  margin-top: 20px;
  background-color: rgba(122, 118, 118, 0.114);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-radius: 4px;
}

.ado1 {
  text-align: center;
  color: rgba(0, 0, 0, 0.648);
  font-size: 110%;
  opacity: 80%;
  margin-top: 11px;
  border-radius: 40px;
}

footer {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgba(87, 84, 96, 0.584);
  font-weight: lighter;
  font-style: oblique;
  font-size: small;
  border-top: solid rgb(208, 243, 255) 1.5px;
  margin-top: 10px;
  align-items: center;
}

.img_footer {
  display: flex;
  justify-content: center;
}

.footer {
  width: 30px;
  margin: 25px;
  align-content: center;
}

h4 {
  text-align: center;
}

/*sección turnos*/
.titulos { /*palabra*/
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 170%;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 10px auto;
}

form {
  width: 40%;
  text-decoration: none;
  color: rgba(39, 56, 63, 0.731);
  font-size: 24px;
  font-weight: lighter;
  margin: auto;
  background-color: rgba(240, 240, 240, 0.317);
  padding: 20px 200px;
  border: solid rgb(209, 219, 224) 1px;
  border-radius: 5px;
}

/*sección adopciones*/
.frase {
  text-decoration: none;
  color: rgba(78, 107, 115, 0.623);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman" serif;
  font-style: italic;
  font-size: larger;
  margin-bottom: 30px;
  text-align: center;
}

/* Carrusel */
/* Ajuste del slide (posicionar elementos relativos) */
.carousel-item {
  position: relative;
}

/* Imagen: altura fija y object-fit para cubrir sin deformar */
.carousel-item img {
  width: 100%;
  height: 420px; /* ajusta según tu diseño */
  object-fit: contain;
  display: block;
}

/* Gradiente suave en la parte inferior para mejorar legibilidad del texto */
.carousel-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* fondo semitransparente y texto alineado a la izquierda */
.carousel-caption.caption-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  text-align: left;
}

/* Título y descripción */
.animal-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.animal-desc {
  margin: 6px 0 0;
  font-size: 0.98rem;
  color: #f0f0f0;
}

/* Responsive: reducir altura y tamaños en pantallas pequeñas */
@media (max-width: 768px) {
  .carousel-item img {
    height: 320px;
  }
  .animal-name {
    font-size: 1.15rem;
  }
  .animal-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .carousel-item img {
    height: 260px;
  }
  .carousel-caption.caption-bottom {
    padding: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .animal-name {
    font-size: 1rem;
  }
  .animal-desc {
    font-size: 0.9rem;
  }
}
/*sección accesorios*/
li.accesorios {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 1px;
  height: 25px;
  padding-left: 24px;
  text-align: left;
  list-style: none;
  margin: 40px 15px 15px 40px;
  color: blanchedalmond;
  align-content: center;
  padding-left: 40px;
}

li.collares {
  background-image: url(imagenes/collar_accesorio.png);
  background-size: 40px;
  margin-left: 30px;
  margin-right: 40px;
  padding-left: 50px;
}

li.caniles {
  background-image: url(imagenes/canil_2.png);
  background-size: 40px 39px;
  margin-left: 30px;
  margin-right: 40px;
  padding-left: 50px;
}

li.juguetes {
  background-image: url(imagenes/juguetes_perro1.jpg);
  background-size: 45px;
  margin-left: 30px;
  margin-right: 40px;
  padding-left: 50px;
}

/*Alimentos*/
li.alimento a {
  background-color: rgba(114, 167, 189, 0.71);
  border: none;
  border-radius: 3px 20px 15px;
  padding: 4px 50px;
  color: azure;
}

li.alimento {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1px;
  height: 25px;
  padding-left: 24px;
  text-align: left;
  list-style: none;
  margin: 40px 15px 15px 40px;
  color: blanchedalmond;
  align-content: center;
  padding-left: 40px;
}

li.perros {
  background-image: url(imagenes/alimento_perros3.jpg);
}

li.gatos {
  background-image: url(imagenes/alimento_gatos4.jpg);
}

li.peces {
  background-image: url(imagenes/alimento_peces4.jpg);
  background-size: 36px 45px;
}

li.aves {
  background-image: url(imagenes/alimento_pajaros2.jpg);
  background-size: 55px;
  margin-left: 30px;
  margin-right: 40px;
  padding-left: 50px;
}

/*# sourceMappingURL=style.css.map */
