body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
}

h1,
h2 {
  color: #333;
}

p {
  color: #555;
}

a {
  text-decoration: none;
}

/* Hero Section */
.package-hero {
  background-image: url("village-hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.package-hero h1 {
  font-size: 2.5em;
}

.package-hero p {
  margin-top: 10px;
  font-size: 1.2em;
}

/* Sticky Navbar */
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sticky-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.sticky-nav li {
  margin: 0 15px;
}

.sticky-nav a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.sticky-nav a:hover,
.sticky-nav a.active {
  color: #28a745; /* Green for active links */
  border-bottom: 2px solid #28a745;
}

/* Section Styles */
section {
  padding: 20px;
}

.package-details,
.package-gallery,
.package-contact {
  background: #f9f9f9;
}

.package-highlights ul,
.package-itinerary ul {
  list-style: none;
  padding: 0;
}

/* Highlights Section */
.package-highlights ul {
  max-width: 600px;
  margin: 0 auto;
}

.package-highlights li {
  margin: 10px 0;
  font-size: 1em;
}

/* Gallery Section */
.package-gallery {
  text-align: center;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

/* Itinerary Section */
.package-itinerary ul {
  max-width: 600px;
  margin: 0 auto;
}

.package-itinerary li {
  margin: 10px 0;
  font-size: 1em;
}

.package-itinerary li strong {
  color: #007bff;
}

/* Contact Form Section */
.package-contact {
  text-align: center;
}

.package-contact input,
.package-contact textarea {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.package-contact button {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.package-contact button:hover {
  background-color: #1e7e34;
}

/* Map Section */
.package-map iframe {
  border: none;
  border-radius: 8px;
}

/* Reviews Section */
.package-reviews {
  background-color: #f9f9f9;
  text-align: center;
}

.no-reviews {
  color: #555;
  font-style: italic;
}

/* Check-In Section */
.package-checkin {
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  border: 2px solid #28a745;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
}

.package-checkin h2 {
  color: #28a745;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.package-checkin p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.package-checkin form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-checkin label {
  margin: 10px 0 5px;
  font-size: 1em;
  color: #333;
}

.package-checkin input {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1em;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 80%;
}

.package-checkin button {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.package-checkin button:hover {
  background-color: #1e7e34;
  transform: scale(1.05);
}

/* Booking Section */
.package-booking {
  background-color: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 40px 20px;
  border: 2px solid #28a745;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-booking h2 {
  font-size: 2em;
  color: #28a745;
  margin-bottom: 20px;
}

.package-booking p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.package-booking .btn {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.package-booking .btn:hover {
  background-color: #1e7e34;
  transform: scale(1.05);
}
/* Pricing Section */
.package-pricing {
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-pricing h2 {
  color: #28a745;
  margin-bottom: 15px;
}

.package-pricing p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1em;
}

.package-pricing table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.package-pricing th,
.package-pricing td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: center;
}

.package-pricing th {
  background-color: #28a745;
  color: white;
  font-weight: bold;
}

.package-pricing tr:nth-child(even) {
  background-color: #f2f2f2;
}

.package-pricing tr:hover {
  background-color: #e6ffe6; /* Light green hover effect */
}

.package-pricing td {
  font-size: 1em;
  color: #333;
}
#itenary1 {
  display: none;
}

/* General Page Styling */

/* Inquiry Section */
.package-contact {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.package-contact h2 {
  color: #007bff;
  font-size: 22px;
}

.package-contact form {
  display: flex;
  flex-direction: column;
}

.package-contact input,
.package-contact textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.package-contact button {
  background: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 12px;
}

.package-contact button:hover {
  background: #0056b3;
}

/* Reviews Section */
.package-reviews {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.package-reviews h2 {
  color: #28a745;
  font-size: 22px;
}

.no-reviews p {
  font-size: 16px;
  font-style: italic;
  color: #777;
}

/* Booking Section */
.package-booking {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.package-booking h2 {
  color: #ff5722;
  font-size: 22px;
}

.package-booking select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.package-booking button {
  background: #ff5722;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 12px;
}

.package-booking button:hover {
  background: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
  .package-contact,
  .package-reviews,
  .package-booking {
    width: 90%;
  }
}

/* General Page Styling */
body {
  font-family: "Poppins", sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Package Details Section */
.package-details {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
}

.package-details h2 {
  color: #007bff;
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
}

.package-details h3,
h4 {
  color: #333;
}

.package-details p {
  font-size: 16px;
  line-height: 1.6;
}

/* List Styling */
.package-details ul {
  list-style: none;
  padding: 0;
}

.package-details ul li {
  background: #eef;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

/* Book Now Button */
.package-details button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}

.package-details button:hover {
  background: #0056b3;
}

/* Package Pricing Table */
.package-pricing {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.package-pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.package-pricing th,
td {
  padding: 12px;
  border: 1px solid #ddd;
}

.package-pricing th {
  background: #007bff;
  color: white;
}

.package-pricing td {
  background: #eef;
}

/* Highlights Section */
.package-highlights {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.package-highlights h2 {
  color: #28a745;
  font-size: 22px;
}

.package-highlights ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Gallery Section */
.package-gallery {
  text-align: center;
  padding: 30px;
}

.gallery img {
  max-width: 30%;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Booking Section */
.package-booking {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.package-booking select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.package-booking button {
  background: #ff5722;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 12px;
}

.package-booking button:hover {
  background: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
  .package-details,
  .package-pricing,
  .package-highlights,
  .package-gallery,
  .package-booking {
    width: 90%;
  }

  .gallery img {
    max-width: 100%;
  }
}

/* Package Itinerary Section */
.package-itinerary {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}

.package-itinerary h2 {
  color: #007bff;
  font-size: 26px;
  margin-bottom: 15px;
}

.package-itinerary ul {
  list-style: none;
  padding: 0;
}

.package-itinerary li {
  background: #eef;
  padding: 12px;
  margin: 5px 0;
  border-radius: 5px;
  font-size: 18px;
  text-align: left;
}

/* Itinerary Buttons */
.itenarybtn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 10px auto;
  transition: background 0.3s;
}

.itenarybtn:hover {
  background: #0056b3;
}

/* Itinerary Toggle Styling */
.package-itinerary ul ul {
  display: none;
  background: #fafafa;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .package-itinerary {
    width: 90%;
  }

  .itenarybtn {
    width: 100%;
  }
}

.footer {
  background-color: #000000; /* Black background color */
  color: #ffffff; /* White text for better contrast */
  padding: 2rem; /* Adds space inside the footer */
  text-align: center; /* Centers the text */
}

.footer-container {
  display: flex; /* Align sections horizontally */
  justify-content: space-between; /* Even spacing between sections */
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  margin-bottom: 1rem; /* Adds spacing below footer container */
}

.footer-section {
  flex: 1; /* Ensures equal space between sections */
  padding: 1rem; /* Adds spacing inside sections */
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase; /* Adds emphasis to headings */
}

.footer-section ul {
  list-style: none; /* Removes bullet points */
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem; /* Adds spacing between list items */
}

.footer-section ul li a {
  color: #ffffff; /* White text for links */
  text-decoration: none; /* Removes underline from links */
}

.footer-section ul li a:hover {
  text-decoration: underline; /* Adds underline on hover */
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #ffffff; /* Adds a thin line above the bottom section */
  padding-top: 1rem; /* Adds spacing above the bottom section */
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stacks sections vertically on small screens */
  }

  .footer-section {
    text-align: center; /* Centers the text for smaller screens */
  }
}

body {
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
}

#reference {
  text-align: start;
}
