/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Navbar starts */
.header-logo{
  width: 145px;
  height: auto;
}
.header-logo:hover{
  cursor: pointer;
}
.navbar {
 display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;   /* ✅ Add this */
  z-index: 10000;
}
ul.nav-links {
    font-size: 17px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0d2b66;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #0d2b66;
  font-weight: 500;
  padding-bottom: 10px; 
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 0%;
  height: 2px;
  background-color: #FF6F3C;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%; 
}

.nav-links a:hover {
  color: #FF6F3C;
}

.btn {
  background: #FF6F3C;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #e65a27;
}

.btn-bookings{
  background: transparent;
  color: #FF6F3C;
  padding: 10px 20px;
  border: 1px solid #FF6F3C;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-bookings:hover{
  background: #FF6F3C;
  color: white;
}
.btn-div{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
/* Highlight active page */

#home-link.active,
#tours-link.active,
#about-link.active,
#contact-link.active {
  color: #FF6F3C; /* same as hover */
}


/* Navbar ends */

/* 🌍 About Section */
.about {
  background: linear-gradient(135deg, #f9f9f9, #eef7ff);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  text-align: center;
  margin-bottom: 60px;
}

.about h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d2b66;
  margin-bottom: 20px;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6b35; /* Accent orange */
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 10px auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.icon {
  display: inline-block;
  font-size: 2rem;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 10px 0;
}

.feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Footer starts */
.footer {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.divider {
  border: none;
  border-top: 1px solid #eee;
  width: 80%;        
  margin: 0px auto; 
}


.footer .logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer ul li a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #FF6F3C;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}
.footer-logo{
  width: 145px;
  height: auto;
}

/* Footer endss */



/* Dropdown header */
.bookings-dropdown {
  position: absolute;      
  top: 100%;              
  right: 0;
  background: #fff;        
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;           
  display: none;     
}

.bookings-dropdown.show {
  display: block;
}

.bookings-dropdown p,
.bookings-dropdown div {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Unified dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 320px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 10px;
  z-index: 999999 !important;  /* ✅ Force above all */
}

.dropdown-content.show {
  display: block;
}

.dropdown-content p {
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
}
.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.close-dropdown {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.badge {
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  display: inline-block;
}
.cancel-btn {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  margin-top: 6px;
}
.booking-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
}