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

/* NAVBAR STYLES STARTED */

header nav {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #abc8d8;
}

header .top-bar-container {
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 12;
  transition: 0.2s ease-in-out;
}

header .top-bar-container.active {
  background-color: white;
}

header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .top-bar .top-bar-left i {
  font-size: 24px;
}

header .top-bar img {
  width: 24px;
}

header .top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .top-bar-left p {
  display: flex;
  align-items: center;
  gap: 5px;
}

header .top-bar-right .select-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .top-bar-right .select-container .select-box {
  display: flex;
  align-items: center;
  gap: 0px;
}

header .top-bar-right select {
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
}

header .top-bar-right .search-container {
  width: 200px;
  height: 32px;
  border: 1px solid #7c7878;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
}

header .top-bar-right .search-container input {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  outline: 0;
  padding: 2px 10px;
  background-color: transparent;
}

header .navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}

.fa-bars {
  display: none;
}

header .navigation-container .navigation-left img {
  width: 60px;
}

header .navigation-container .navigation-right ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .navigation-container .navigation-right ul .top-bar-right,
.fa-circle-xmark,
ul .top-bar-left {
  display: none;
}

header .navigation-container .navigation-right ul a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.01em;
  transition: 0.2s;
}

header .navigation-container .navigation-right ul a:hover {
  transform: scale(1.1);
}

header .navigation-container .navigation-right ul .booking-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 151px;
  height: 40px;
  background: #ff9f1d;
  border-radius: 30px;
  font-size: 16px;
}

.banner-box{
  /* No solid color, fully transparent when no image */
  background: transparent;

  /* Optional: keep only the image (remove this line for full transparency) */
  background-image: url('/public/assets/img/kalen-emsley-Bkci_8qcdvQ-unsplash.jpg');

  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:scroll;

  min-height:260px;
  display:flex;align-items:center;justify-content:center;gap:8px;
  color:#fff; /* text stays readable on the image */
}

.book-btn {
  background-color: #ff9f1d;
  color: #2a2a2a;
  padding: 7px 20px;
  font-weight: 600;
  margin: 12px;
  transition: 0.2s ease-in-out;
}

.book-btn:hover {
  transform: scale(1.1);
}

.title {
  color: #333;
}

.desc {
  line-height: 28px;
}

.tour-book,
.read-more-btn {
  text-decoration: none;
  color: #386790;
  font-weight: 600;
}

.tour-book:hover {
  color: #337ab7;
}

/* FOOTER STYLE STARTED */
.footer-container {
  width: 100%;
  height: auto;
  background: rgba(178, 178, 178, 0.25);
  padding: 30px 0;
}

.footer-top .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 1px;
  color: #1e1e1e;
}

.footer-top ul {
  list-style: none;
  padding: 0;
}

.footer-top li {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #2a2a2a;
}

.footer-bottom {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-bottom ul {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
}

.footer-bottom ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #1e1e1e;
}

.footer-bottom ul li i {
  font-size: 24px;
  transition: 0.2s ease-in-out;
}

.footer-bottom ul li i:hover {
  transform: rotate(360deg);
}

/* MEDIA QUERY FOR RESPONSIVENESS */

@media screen and (max-width: 1024px) {
  header .top-bar-container.active {
    background-color: transparent;
  }
  header .navigation-container {
    padding-top: 8px;
  }
  header .navigation-container .navigation-left img {
    width: 50px;
  }

  header .fa-bars {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  header .navigation-container .navigation-right ul {
    flex-direction: column;
    justify-content: center;
    background-color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: 0.2s ease-in-out;
    z-index: 10;
  }

  header .navigation-container .navigation-right ul.active-navbar {
    left: 0%;
  }

  header .navigation-container .navigation-right ul .fa-circle-xmark {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    display: block;
  }

  header .navigation-container .navigation-right ul a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.01em;
    transition: 0.2s;
  }

  header .navigation-container .navigation-right ul a:hover {
    transform: scale(1.1);
  }

  header .navigation-container .navigation-right ul .booking-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 151px;
    height: 40px;
    background: #ff9f1d;
    border-radius: 30px;
    font-size: 16px;
  }

  header .navigation-container .navigation-right ul .top-bar-left {
    display: block;
  }

  header .navigation-container .navigation-right ul .top-bar-right {
    flex-direction: column;
    display: flex;
  }

  header .top-bar {
    display: none;
  }

  .banner-box {
    height: 150px;
    padding: 20px;
  }

  .book-btn {
    margin-left: 0;
    width: 100%;
  }

  /* FOOTER STYLE STARTED */
  .footer-container {
    width: 100%;
    height: auto;
    background: rgba(178, 178, 178, 0.25);
    padding: 30px 0;
  }

  .footer-top .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 1px;
    color: #1e1e1e;
  }

  .footer-top ul {
    list-style: none;
    padding: 0;
  }

  .footer-top li {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #2a2a2a;
  }

  .footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .footer-bottom ul {
    flex-direction: column;
  }

  .footer-bottom .footer-social-links {
    flex-direction: row;
  }

  .footer-bottom ul li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #1e1e1e;
  }

  .footer-bottom ul li i {
    font-size: 24px;
    transition: 0.2s ease-in-out;
  }

  .footer-bottom ul li i:hover {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-box {
    height: 200px;
  }

  /* FOOTER STYLE STARTED */
  .footer-container {
    flex-direction: row;
  }

  .footer-container ul {
    flex-direction: row;
  }
}


