@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

*:not(i) {
  font-family: "Oswald", sans-serif;
}

.navbar-toggler {
  background-color: #4db2ff;
}

body {
  background-color: #f1f1f1;
}

.banner .text p {
  margin: 0;
  color: #d9e1e8;
}

header {
  background-color: #000;
}
header nav a {
  color: #d9e1e8 !important;
}

.active-self {
  color: #4db2ff !important;
}

header nav a:hover {
  color: #4db2ff !important;
}

#hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/hero.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

#hero .headline h1 {
  color: #d9e1e8;
  font-size: 4rem;
  text-align: center;
}
#hero .headline p {
  color: #d9e1e8;
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
}

#list .item {
  padding: 15px;
  background: #152b3c !important;
  border: 1px solid #37ff148e;
  border-radius: 10px;
  margin-top: 24px;
  background: #d9e1e8;
}
#list .item .place {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0d1a24;
  border-radius: 100px;
}
#list .item .place p {
  margin: 0;
  color: #d9e1e8 !important;
  font-weight: bold;
  font-size: 18px;
}
#list .item .img img {
  width: 100%;
}
#list .item .body-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#list .item .body-text ul {
  padding: 0;
  margin: 0;
  text-align: center;
}

#list .item .body-text ul li {
  list-style: none;
  color: #d9e1e8;
  text-align: center;
}
#list .item .rating p {
  font-size: 18px;
  margin: 0;
  color: #d9e1e8;
  text-align: center;
}
#list .item .rating p i {
  color: #ffd250;
  font-size: 14px;
}
#list .item .button {
  width: 100%;
}
#list .item .button a {
  display: inline-block;
  width: 100%;
  padding: 8px 12px;
  background-color: #000;
  border: 2px solid #000;
  transition: 0.3s linear;
  color: #d9e1e8;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
}
#list .item .button a:hover {
  background-color: transparent;
  border: 2px solid #000;
  color: #d9e1e8;
  letter-spacing: 1px;
}

#about {
  border-radius: 10px;
  border: 1px solid #37ff148e;
  background-color: #152b3c;
  color: #d9e1e8;
}

footer {
  background-color: #000;
  padding: 12px 0;
}
footer h2,
footer h3 {
  color: #fff;
}
footer p {
  color: #fff;
}
footer .img {
}
footer .img img {
  width: 200px;
}
footer .img img.disc_18 {
  height: 100%;
  width: 50%;
}
footer .disclaimer .img {
  background-color: transparent;
  display: flex;
  justify-content: end;
  align-items: center;
}
footer .disclaimer .img img {
  width: 50%;
}
footer .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .text p {
  margin: 0;
}
footer ul {
  padding-inline-start: 0;
}
footer ul li {
  list-style-type: none;
  display: inline-block;
}
footer ul li a {
  text-decoration: none;
  padding: 0 8px;
  color: #fff;
}

#privacy {
  padding: 24px 0;
}
#privacy h2 {
  font-size: 20px;
}
#privacy ul li {
  list-style-type: none;
}
#privacy p {
  font-size: 16px;
} /*# sourceMappingURL=style.css.map */

body {
  background: #0d1a24;
}

@media (max-width: 992px) {
  #hero {
    padding-top: 6%;
    padding-bottom: 60px;
  }
  #hero .headline h1 {
    font-size: 3rem;
  }
  #hero .headline p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
  }
}

.custom-input {
  background-color: #0d1a24; /* dark navy input background */
  border: 2px solid #304f70; /* subtle blue border */
  color: #fff;
}
.custom-input:focus {
  background-color: #0d1a24;
  border-color: #4db2ff; /* neon green focus */
  box-shadow: 0 0 10px #4db2ff, 0 0 20px #4db2ff;
  color: #fff;
}
.custom-input::placeholder {
  color: #9baec5; /* soft gray-blue placeholder */
}
.custom-btn {
  background-color: #4db2ff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}
.custom-btn:hover {
  background-color: #2f6f9f; /* darker neon green */
}
