@charset "UTF-8";
@import "../../node_modules/bootstrap/dist/css/bootstrap.min.css";
@import "../../node_modules/bootstrap-icons/font/bootstrap-icons.css";
:root {
  --color-primario: #007bff;
  --color-secundario: #6c757d;
  --color-terciario: #6c757d;
  --color-claro: #f8f9fa;
  --color-oscuro: #343a40;
  --color-exito: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
}

.nav-link {
  color: white;
  font-weight: light;
}

.nav-link:hover {
  color: black;
}

.navbar-brand img {
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 100%;
}

.span-icon {
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 10px;
  width: 3vw;
  height: 3vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

body {
  background-image: url("https://www.asiaodysseytravel.com/images/asia-tours/sri-lanka-tours/bentota-beach-700-1.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
}

header .bg-fondo {
  background-color: rgba(255, 255, 255, 0.774);
  color: white;
}
header .span-icon {
  font-size: 1.5rem;
  padding: 5px 10px;
  border-radius: 10px;
}
header span {
  font-size: 1.5rem;
}
header span a {
  border-radius: 50%;
  border: solid 1px white;
}
header span a img {
  width: 30px;
  height: 30px;
  color: white;
}
header nav ul li {
  padding: 10px 20px;
  border-radius: 10px;
}
header nav ul li .bg-a {
  color: white;
  background-color: rgb(0, 0, 0);
}
header nav ul li .nav-link {
  border-radius: 7px;
}
header nav ul li a {
  text-decoration: none;
}
header nav ul li a:hover {
  color: black;
  background-color: var(--color-claro);
}

main {
  width: 100%;
  height: 100vh;
}
main section {
  width: 90%;
  height: 30vh;
  display: flex;
  top: 60%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border: var(--color-claro) solid 1px;
  border-radius: 10px;
  background-color: rgba(1, 3, 5, 0.5176470588);
}
main section h1 {
  font-size: 4rem;
  color: var(--color-claro);
  margin-bottom: 1rem;
}
main section p {
  color: var(--color-claro);
  margin-bottom: 1rem;
}
main section h3 {
  font-size: 1.5rem;
  color: var(--color-claro);
  margin-bottom: 1rem;
}

footer {
  width: 100%;
  height: 30vh;
  color: var(--color-oscuro);
  text-align: center;
  padding: 1rem;
  display: flex;
  background-color: rgba(255, 193, 7, 0.4392156863);
}
footer div ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
footer div ul li {
  margin: 0 1rem;
}
footer div ul li a {
  text-decoration: none;
  color: var(--color-oscuro);
}
footer div ul li a:hover {
  color: var(--color-primario);
}

@media (min-width: 768px) {
  main section {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  main section {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  main section {
    width: 60%;
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  main section {
    width: 50%;
    margin: 0 auto;
  }
}
/* Estilos para la sección de publicaciones */
#publicaciones {
  width: 70%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 25%;
}

#publicaciones .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#publicaciones .card-img-top {
  height: 200px;
  object-fit: cover;
}

#publicaciones .card-title {
  font-weight: bold;
}

#publicaciones .card-text {
  color: #666;
}

#publicaciones .rating {
  color: #ffc107; /* Color de las estrellas */
}

#publicaciones .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

#publicaciones .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

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