
.navbar {
  background-color: #222;
}
.nav-link {
  font-weight: 500;
}
.hero {
  background-image: url("./images/Destinations/bg_1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}
#overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
#hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1rem;
}
.home-link:hover {
  color: #ff5c35 !important;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  h5.text-center {
    margin-top: 10rem !important;
  }
}

