@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
body {
  background-color: #f2f0e6;
  color: #f2f0e6;
  font-family: "Roboto", sans-serif;
}
header {
  background-color: #1f6b3a;
}

nav {
  background-color: #1f6b3a;
}
nav a {
  color: aliceblue;
}

footer {
  background-color: #333b42 !important;
}
h2 {
  color: rgba(46, 125, 50, 1);
}

h3 {
  color: black;
}

/*---------------------------------------------------*/
/*Home*/
.banner {
  background-image: url("./imagenes/BANNER.webp");
  background-size: cover; /* la imagen llena todo */
  background-position: center; /* centrada */
  background-repeat: no-repeat;
  height: 400px; /* alto del banner */
  display: flex; /* activa flexbox */
  align-items: center; /* centra verticalmente el contenido */
}
.banner-contenido {
  font-size: 30px;
  margin-left: 50px; /* mueve el texto a la derecha */
}

.titulo_banner {
  font-size: clamp(32px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: white;

  text-shadow:
    0 4px 15px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(25, 135, 84, 0.4);

  /* Animación suave */
  transition: all 0.3s ease-in-out;
}

.relleno {
  color: rgba(53, 53, 53, 1);
}
.relleno p {
  margin-left: 60px;
}
/*fin Home*/

/*---------------------------------------------------*/

/*Tarjetas*/
.tarjetas_excursiones {
  background-color: rgba(46, 125, 50, 1);
  color: aliceblue;
  margin-bottom: 60px;
}

.tarjetas_excursiones:hover {
  transform: translateY(-5px); /* sube un poco la tarjeta */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* un poco de sombra */
  transition: all 0.3s ease; /* animación suave */
}

.tarjeta_info img {
  width: 22px;
}

.btn-custom {
  background-color: cadetblue;
}

.btn-custom:hover {
  background-color: rgba(
    98,
    149,
    151,
    0.9
  ); /* un azul cadet un poco más oscuro */
}

/*---------------------------------------------------*/

/*NOVEDADES*/

.banner-novedades {
  background: url("imagenes/imagenes_de_novedades/image 20.png") no-repeat
    center center/cover;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.banner-novedades h1,
.banner-novedades p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  color: white;
}

.tarjeta img {
  height: 160px;
  object-fit: cover;
}

/*fin novedades*/
/*------------------------------------------------------*/

.descripcion {
  color: rgba(0, 0, 0, 0.7);
}

.carousel-item img {
  height: 500px; /* altura fija */
  object-fit: cover; /* recorta para que no se deforme */
  width: 100%; /* que siempre ocupe el ancho */
}

.info_excursion {
  background-color: aliceblue;
  padding-top: 20px;
  padding-bottom: 20px;
}

.info_item {
  color: rgba(0, 0, 0, 0.7);
}

.info_item img {
  width: 70px;
}

/*style="width: 200px;"*/
.price {
  background: rgba(62, 81, 131, 1);
  color: white;
  padding: 6px 12px;
  border-radius: 4px 4px 0 0;
  font-weight: bold;
}
.btn-reservar {
  background: rgba(46, 125, 50, 1);
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  font-size: 14px;
}
.btn-reservar:hover {
  background: darkgreen;
}

/*---------------------------------------------------*/
/*lupa busqueda*/

#sugerencias {
  display: flex;
  position: absolute;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  width: 210px;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

#sugerencias li {
  padding: 10px 15px;
  cursor: pointer;
}

#sugerencias li:hover {
  background-color: rgba(0, 47, 141, 0.623);
}

@media (max-width: 990px) {
  #sugerencias {
    width: 96%;
  }
}
@media (max-width: 630px) {
  #sugerencias {
    width: 95%;
  }
}
@media (max-width: 510px) {
  #sugerencias {
    width: 94%;
  }
}
@media (max-width: 420px) {
  #sugerencias {
    width: 93%;
  }
}
@media (max-width: 360px) {
  #sugerencias {
    width: 92%;
  }
}
@media (max-width: 300px) {
  #sugerencias {
    width: 90%;
  }
}

#logo-retro {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Verde principal (header / botones fuertes) */
.btn-success,
.btn-custom {
  background-color: #3a7d44 !important;
  border-color: #3a7d44 !important;
}
.btn-success:hover,
.btn-custom:hover {
  background-color: #2e4938 !important;
  border-color: #2e4938 !important;
}

/* Fondo claro tipo beige */
.bg-light {
  background-color: #ffffff !important;
}

/* Verde medio para títulos, bordes e iconos */
.text-success {
  color: #009641 !important;
}
.border-success {
  border-color: #4c9f70 !important;
}

.card {
  border-radius: 12px;
}
.card img {
  border-radius: 12px 12px 0 0;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-text img {
  width: 18px;
  margin-right: 4px;
  opacity: 0.85;
}

.card-text.price {
  font-size: 1.1rem;
  color: #1a4f1a;
  font-weight: bold;
}

.tarjetas_excursiones {
  border: 0.1px solid #40a847 !important; /* Verde oscuro */
  border-radius: 12px;
  overflow: hidden;
  background-color: #199400;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.tarjetas_excursiones:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); /* un poquito más fuerte */
}

.tarjetas_excursiones p {
  color: slategrey;
}

.info-bloque {
  background-color: #e6f2e8; /* verde clarito para buen contraste con #1F6B3A */
  color: #1f6b3a;
}

.reserva_p {
  display: flex;
  flex-direction: row-reverse;
}
.precio {
  color: #313a70;
}

.btn-agregar {
  display: flex;
  background-color: #1f6b3a; /* color principal */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: 0.25s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-agregar:hover {
  background-color: #195a31; /* verde más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.btn-agregar:active {
  transform: scale(0.98);
}
