* {
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif;
}
html{
  scroll-behavior: smooth; 
}
.logo {
  width: 140px;
  cursor: pointer;
}

.header {
  height: 95vh;
  width: 100%;
  background-image: url(/PICTURES/Excursions.jpeg);
  background-size: cover;
  background-position: center;
}

nav{
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img{
  width: 150px;
}
.menu-bar{
  flex: 1;
  text-align: right;
}

.menu-bar ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.menu-bar ul li a {
  text-decoration: none;
  color: black;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.menu-bar, .drop-down li{
list-style: none;
height: 100%;
padding: 0.5rem 1rem;
font-weight: 600;
cursor: pointer;
}
.drop-down{
  position: absolute;
  padding: 0.5rem 0;
  margin: 0.5rem --0.5rem;
  background: transparent;
  color: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  font-size: 15px;
  display: none;
}
.services{
  position: relative;
}

.services:hover .drop-down{
  display: block;
}
.services a{
  display: flex; 
}
.dropdown-icon{
  font-size: 20px;
  position: relative;
  right: -10px;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out all;
}
.services:hover .dropdown-icon{
  transform: rotate(180deg);
  display: block;
}
.drop-down li:hover{
  background: rgb(173, 170, 170);
  color: white;
  border-radius: 0.5rem;
}
.text-box{
  width: 90%;
  color: gray;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1{
  font-size: 120px;
  margin-bottom: 10px;
}
.excursions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5%;
}

/* Excursion styles */
.excursion {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.excursion-title {
  background-color: #000000;
  color: #fff;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.excursion-content {
  display: flex;
  flex-wrap: wrap;
}

.excursion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
}

.excursion-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}

.excursion-description {
  margin-bottom: 15px;
}

.excursion-options {
  list-style-type: none;
  padding: 0;
  margin-bottom: 15px;
}

.excursion-options li {
  margin-bottom: 5px;
}

.excursion-note {
  font-style: italic;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.pickup-info {
  margin-bottom: 15px;
}

.pickup-info h3 {
  margin-bottom: 10px;
}

.pickup-info ul {
  list-style-type: none;
  padding-left: 0;
}


.user-feedback {
  background-color: #f0f8ff;
  border-left: 4px solid #000000;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0 5px 5px 0;
}

.user-feedback h4 {
  margin-top: 0;
  color: #000000;
  font-size: 1.1em;
}

.user-feedback blockquote {
  font-style: italic;
  margin: 10px 0;
  padding-left: 10px;
  border-left: 2px solid #000000;
}

.feedback-author {
  text-align: right;
  font-weight: 600;
  margin-bottom: 0;
}

.book-now-btn {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  font-weight: 600;
}

.book-now-btn:hover {
  background-color: #000000;
}
.booking-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.booking-unavailable {
  color: #ff0000;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
}

.whatsapp-btn i {
  margin-right: 10px;
}


.footer a {
  text-decoration: none;
  color: #999;
  font-size: 22px;
  margin: 0 10px;
}

.footer {
  background-color: #1a202c;
  padding-top: 15%;
  color: #a0aec0;
  margin: 30px 0 0;
  text-align: center;
  padding-bottom: 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}

.footer-section h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #a0aec0;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
}
.menu-bar .fa-bars {
  display: none;

}
.gotopbtn{
  position: fixed;
  width: 50px;
  height: 50px;
  background: #eb0404;
  bottom: 40px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: black;
}

/* Title Section */
.title {
  background-color: #fff;
  padding: 20px;
  margin: 7%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

.title-text {
  margin-bottom: 20px;
  display: inline-block;
}

.title-text a {
  display: inline-block;
  font-size: 18px;
  margin: 5px 0px 15px;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
}

.title-text li {
  list-style-type: none;
  margin: 5px 0;
}

.title-overview {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 25px;
  margin-bottom: 4%;
  box-shadow: 0 3px rgba(0, 0, 0, 0.1);
}

.title-overview a {
  font-family: 'Times New Roman', Times, serif;
}
 
.booking_pictures{
  align-items: left;
  width: 28%;
  border-radius: 5px;
  float: left; 
  margin-right: 25px;
}

nav .fa{
  display: none;
}
.fa-bars-container {
  position: absolute;
  right: 30px;
  top: 20px; 
  padding: 10px;
}
.fa-bars {
  font-size: 24px;
  cursor: pointer;
}
.no-scroll {
  overflow: hidden;
}
@media only screen and (max-width: 650px) {
  .text-box h1 {
    font-size: 50px;
  }

  .menu-bar {
    position: fixed;
    height: 100vh;
    z-index: 2;
    width: 200px;
    top: 0;
    right: -250px;
    background: gray;
    text-align: left;
    transition: 1s;
    display: flex;
    flex-direction: column;
    
  }
  .menu-bar li {
    list-style: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.drop-down {
    flex-direction: column;
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
    color: black;
    box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 15px;
    z-index: 1;
    
  }

.services:hover .drop-down {
    display: flex;
}


.drop-down li a {
  display: block;
  text-decoration: none;
  color: black;
}

.drop-down li a:hover {
    background-color: #ddd;
}
  .menu-bar ul li {
    display: block;
  }
  nav .fa{
    display: block;
    margin: 10px;
    font-size: 30px;
    cursor: pointer;
  }

  .menu-bar ul{
    padding-top: 50px;
    padding-left: 10px;
  }
}