/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}


/* Header Image */
.header-image {
  position: absolute;
  /* Fixes the image to the top of the viewport */
  top: 10%;
  left: 0;
  width: 100%;
  height: auto;
  /* Adjust height automatically to maintain aspect ratio */
  z-index: -1;
  /* Places the image behind the header */
}

/* Header */
header {
  background: #f2eeee;
  /* No background color or image */
  color: #0d0d0d;
  /* Text color */
  padding: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  /* Keeps header at the top while scrolling */
  width: 100%;
  top: 0;
  /* Aligns with the top of the viewport */
  z-index: 10;
  /* Ensure it stays above the header image */
}

/* Logo Styling */
header .logo {
  font-size: 2.5rem;
  /* Large font size for the logo */
  font-family: Arial, sans-serif;
  /* Cursive font from Google Fonts *
  font-weight: bold; /* Make the font bold */
  color: #090909;
  /* Adjust the logo color */
  letter-spacing: 1px;
  /* Add letter spacing for elegance */
  border-radius: 10px;
  /* Rounded corners for the border */
  padding: 0.5rem 1rem;
  /* Padding inside the border */
  display: inline-block;
  /* Makes sure the border fits closely around the text */
}


/* Optional: Add hover effect */
header .logo:hover {
  color: #080806;
  /* Change color on hover */
}

/* Navigation Bar */
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

nav ul li {
  font-size: 1rem;
  margin: 0 10px;
  position: relative;
  /* For bubble background effect */
}

nav ul li a {
  color: #0d0d0d;
  /* Adjust the color based on background */
  text-decoration: none;
  padding: 10px 20px;
  /* Add padding for the bubble effect */
  background: rgba(255, 255, 255, 0.2);
  /* Transparent bubble background */
  border-radius: 50px;
  /* Rounded corners to create the bubble effect */
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Add a shadow to enhance the bubble effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional: Add a soft border */
}

/* Hover effect for the links */
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
  /* Lightens the bubble background on hover */
  color: #ff5722;
  /* Changes the text color on hover */
}

/* Make the links more touchable (for mobile) */
nav ul li a:active {
  background: rgba(255, 255, 255, 0.7);
  /* Changes the bubble background when clicked */
}

/* Optional: Shadow for Header */
header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Adds shadow for better visibility */
}

/* Optional: Shadow for Header */
header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Adds shadow for better visibility */
}

/* Hero Section */
.hero {
  background: url('media/header.jpg') no-repeat center center/cover;
  height: 100vh;
  color: rgb(247, 244, 244);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Overlay to make text more readable */
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Center text inside */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Form Styling */
.hero-content form {
  display: flex;
  align-items: center;
  /* Center items vertically */
  justify-content: center;
  /* Center items horizontally */
  gap: 10px;
  /* Space between form elements */
}

.hero-content form input,
.hero-content form select,
.hero-content form button {
  padding: 0.5rem;
  border: 2px solid rgba(15, 7, 7, 0.5);
  /* Light border */
  border-radius: 20px;
  /* Rounded corners */
  background: rgb(245, 240, 240);
  /* Light transparent background */
  color: rgb(8, 8, 8);
  /* Text color */
}

/* Specific input width */
.hero-content form input {
  width: 200px;
  /* Adjust width as needed */
}

.hero-content form select {
  width: 150px;
  /* Adjust width as needed */
}

/* Submit Button */
.hero-content form button {
  background: rgba(133, 220, 238, 0.8);
  /* Transparent bubble color */
  color: rgb(14, 14, 14);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Bubble effect shadow */
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-content form button:hover {
  background: rgba(255, 86, 34, 0.445);
  /* Solid color on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  /* Enhanced shadow on hover */
}

/* Specialized Tours */
.specialized-tours {
  font-size: 1.5rem;
  padding: 2rem;
  background-color: #f8f7f7;
}

.specialized-tours h2 {

  font-size: 2rem;
  margin-bottom: 20px;
}

.tour-packages {
  display: flex;
  gap: 20px;
}

.tour-package {
  flex: 1;
  padding: 20px;
  background-color: #d6dcd7;
  border-radius: 10px;
  text-align: center;
}

.tour-package h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tour-package p {
  font-size: 16px;
  margin-bottom: 20px;
}

.tour-package .btn {
  padding: 10px 20px;
  background-color: #ff6b35;
  color: rgb(249, 246, 246);
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.tour-package .btn:hover {
  background-color: #df973a;
}

/* Traveler Photos Section */
.traveler-photos {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: left;
}

.traveler-photos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #090808;
  position: relative;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}

/* Photo Container */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.048);
  /* Light shadow */
  width: 100%;
  padding-top: 100%;
  /* Aspect ratio (1:1 for square) */
  position: relative;
  /* For absolute positioning of child elements */
}

/* Image Styling */
.photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the image covers the container */
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Image */
.photo:hover img {
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}

/* Bubble Effect for Text Overlay */
.photo p {
  position: absolute;
  bottom: 10px;
  /* Space from the bottom of the container */
  left: 50%;
  /* Center horizontally */
  transform: translateX(-50%);
  /* Center horizontally */
  padding: 0.5rem 1rem;
  /* Padding inside the bubble */
  background: rgba(255, 255, 255, 0.5);
  /* Semi-transparent white background */
  color: #333;
  /* Dark text color for readability */
  font-size: 1rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* Semi-transparent border */
  border-radius: 12px;
  /* Rounded corners for bubble effect */
  width: calc(100% - 20px);
  /* Ensure consistent width accounting for padding */
  max-width: 280px;
  /* Set a max-width to prevent bubbles from becoming too large */
  z-index: 1;
  /* Ensure it appears above the image */
  cursor: pointer;
  /* Makes the element appear clickable */
  transition: background 0.3s ease, border-color 0.3s ease;
  /* Smooth transition for hover effects */
}

/* Hover Effect for Bubble Overlay */
.photo p:hover {
  background: rgba(255, 255, 255, 0.7);
  /* Lighten the background on hover */
  border-color: rgba(255, 255, 255, 0.7);
  /* Lighten the border on hover */
}

/* Lightbox Container */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Ensure it appears above everything else */
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

/* Key Features */
.key-features {
  width: 100%;
  font-size: 1.5rem;
  padding: 2rem;
  background-color: #fff;
}

.key-features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.categories {
  padding: 1rem;
  display: flex;
  gap: 20px;
}

.category {
  width: 100%;
  flex: 1;
  background-color: #b8eab1;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.category a {
  width: 100%;
  font-size: 16px;
  color: #0a0b0b;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 0.3s ease;
  object-fit: cover;
}

.category a:hover {
  color: #5d6ef5;
}

.top-attractions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}

.attraction {
  flex: 1;
  text-align: center;
}

.attraction img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.attraction p {
  margin-top: 10px;
  font-size: 18px;
}


/* Testimonials */
.testimonials {
  font-size: 1.5rem;
  padding: 1rem;
  text-align: center;
  background: #f9f9f9;
}

.testimonial {
  padding: 3rem;
  background: white;
  display: inline-block;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


/* Social Media Links */
/*-- footer --*/
.social-bnr-agileits {
  float: center;
  margin-right: 1rem;
}

/*--social-icons--*/
.social-icons3 {
  display: block;
  padding: 1rem;
  margin-top: .55em;
}

.social-icons3 {
  display: inline-block;
}

.social-icons3 a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 1rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.1);
  /* Gray background */
  border-radius: 50%;
  /* Circular shape */
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Facebook */
.social-icons3 a.facebook {
  background-color: #3b5998;
}

.social-icons3 a.twitter {
  background-color: #00acee;
}

.social-icons3 a.instagram {
  background-color: #e4405f;
}

.social-icons3 a.linkedin {
  background-color: #0077b5;
}

.social-icons3 a:hover {
  opacity: 0.8;
}

/* Social icon colors */
.social-icons3 a i {
  color: white;
}

/* Footer */
footer {
  background: #f1f2f5;
  color: rgb(5, 4, 4);
  padding: 1rem;
  text-align: center;
}

/* Footer Links (Privacy Policy, Terms, Contact Us) */
footer a {
  color: rgb(16, 15, 15);
  /* Make the links white */
  text-decoration: none;
  /* Remove underline from links */
  margin: 0 15px;
  /*Adds spacing between links*/
  font-size: 1.5rem;
  /* Adjust font size if needed */
}

/* Hover effect for footer links */
footer a:hover {
  color: rgb(8, 8, 8);
  /* Changes the link color to gray on hover */
}

footer .footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer form input {
  padding: 0.5rem;
  margin-right: 10px;
  border-radius: 50px;
}

footer form button {
  padding: 0.5rem 1rem;
  background: #ff6b35;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}