/* General Reset */
* {
  box-sizing: border-box;
  /* margin: 0; */
  /* padding: 0; */
}

body {
  font-family: "Open Sans", sans-serif;
}

/* Slider Container */
.slider_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Slider Styles */
.slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slider-image {
  width: 100%;
  height: 100vh; /* Makes the images full height of the viewport */
  object-fit: cover; /* Ensures the image covers the container evenly */
}

/* Overlay Text on Image */
.image-text {
  /* filter: opacity(0); */
  padding: 10px;
  background-color: #0000008a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 50%; /* Restricts text width for better readability */
}

.image-text h2 {
  font-size: 1.8rem;
  margin: 0;
}

.image-text h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.image-text button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff914d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.image-text button:hover {
  background-color: #e06c2d;
}

/* Mobile Responsiveness for Slider */
@media (max-width: 768px) {
  .slider-image {
    height: auto; /* Ensures the image height adjusts to content */
  }

  .image-text h2 {
    font-size: 1.5rem; /* Reduces text size on smaller screens */
  }

  .image-text h3 {
    font-size: 1rem; /* Reduces subtitle size */
  }

  .image-text button {
    font-size: 0.9rem; /* Adjusts button size */
    padding: 8px 16px;
  }
}

/* Slider Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7); /* Darker background for visibility */
  color: white; /* Button text color */
  border: none;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  z-index: 100; /* Ensures buttons are always above other elements */
  display: block;
}

.prev {
  left: 15px; /* Positioned slightly inward for better usability */
}

.next {
  right: 15px; /* Positioned slightly inward for better usability */
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.9); /* Darker shade on hover */
}
/* Query Container, Why Container, Footer */
.query_container,
.whycontainer,
.footer {
  margin: 20px;
  padding: 20px;
  background-color: #f8f8f8;
}

/* Styles for Include_Container Class */
button {
  background-color: #4caf50; /* Green */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}

/* Hover effect for all buttons */
button:hover {
  background-color: #388e3c;
}

/* Center the "Show all listings" buttons */
.tourism-row > a {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* General Section Styling */
.tourism-sections {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tourism Row Styling */
.tourism-row {
  display: flex; /* Align slogan and description horizontally */
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  /* Space between slogan, description, and container */
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Slogan Styling */
.tourism-slogan {
  font-size: 1.8rem;
  color: #4caf50; /* Highlight with theme color */
  flex: 1; /* Adjust space allocation */
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 805;
  font-style: italic;
}

/* Description Styling */
.tourism-description {
  font-size: 1rem;
  color: #555;
  flex: 2; /* Adjust space allocation */
  text-align: left;
  line-height: 1.6;
}

/* Product Container Styling */

.product-container {
  margin-top: 2.5rem; /* Increased spacing above the product container */
  margin-bottom: 2.5rem; /* Added spacing below the product container */
  padding: 1.5rem;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: left;
}

.rural-images-container {
  /* margin-bottom: 2rem; Added more space between items */
  /* padding: 1rem; Added padding inside the container */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  line-height: 0;
  display: inline-block;
  cursor: pointer;
  min-width: 220px; /* Adjusted minimum width */
  max-width: 260px; /* Adjusted maximum width */
  height: auto;
  box-sizing: border-box;
}

.rural-images-container img {
  width: 100%;
  padding: 15px;
  padding-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
  box-sizing: border-box;
}

.rural-images-container-desc {
  /* margin-top: 1.5rem; Increased spacing above the description container */
  padding: 1rem;
  /* Added padding inside the description */

  text-align: center; /* Center-align text for better aesthetics */

  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  border-radius: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tourism-row {
    flex-direction: column; /* Stack slogan, description, and container vertically */
  }

  .tourism-slogan,
  .tourism-description {
    text-align: center;
  }

  .product-container {
    text-align: center; /* Center-align product container for smaller screens */
  }
  .image-text {
    /* filter: opacity(0); */
    padding: 0;
    /* background-color: transparent; */
    width: 90%;
  }
}

.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;
}
