@import url("https://fonts.googleapis.com/css2?family=Moderustic&family=SUSE:wght@600&display=swap");

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

body {
  background-color: #f0f5ff;
  font-family: "Moderustic", "Poppins", sans-serif;
  color: #333;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.back-btn {
  top: 20px;
  left: 20px;
  font-size: 1em;
  text-decoration: none;
  color: #38b6ff;
  background: transparent;
  border: 2px solid #38b6ff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #38b6ff;
  color: #fff;
}
/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

/* Container */
.container {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
  gap: 20px;
  padding: 20px;
  justify-content: flex-start;
  align-items: flex-start; /* Default alignment */
}

/* Sidebar */
.sidebar {
  height: 450px;
  width: 100%;
  max-width: 300px;
  background: linear-gradient(135deg, #0095ff, #006aff);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.sidebar p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.sidebar form {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 320px; /* Fixed height */
  justify-content: space-between;
}

.sidebar input,
.sidebar select,
.sidebar button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: none;
  outline: none;
}

.sidebar input {
  font-size: 0.9rem;
}

.sidebar select {
  font-size: 0.9rem;
}

.sidebar button {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar button:hover {
  background: #0056b3;
}

/* Main Content */
.tour-section {
  flex: 1;
  overflow: hidden;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: normal;
}

.tour-header select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tour-grid {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  overflow-y: auto; /* Enable scrolling */
  max-height: 620px; /* Restrict rows to 2 at a time */
  padding-right: 10px; /* For smooth scrolling */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    max-width: 100%;
  }

  .tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .sidebar h2 {
    font-size: 1.5rem;
  }

  .sidebar button {
    font-size: 0.8rem;
  }
}

.trek-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #0095ff;
}

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

.price-badge {
  text-align: center;
  background: #0095ff;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  margin-left: 10px;
  /* width: 70px; */
  width: 94%;
  border-radius: 12px;
}
.trek-image {
  /* position: relative;
  top: -50px; */
  width: 100%; /* Full width of the card */
  height: auto; /* Maintain aspect ratio */
  border-bottom: 1px solid #0095ff; /* Bottom border for the image */
}

.trek-details {
  padding: 15px; /* Padding inside the details section */
}

.trek-title {
  font-size: 1.5em; /* Title font size */
  color: #333; /* Dark text color */
  margin-bottom: 10px;
  text-align: center;
}

.trek-duration,
.trek-description,
.trek-destination,
.trek-month,
.trek-season {
  font-size: 0.9em; /* Smaller font size for details */
  color: #666; /* Lighter text color */
  margin: 5px 0; /* Margin around the text */
}
.trek-duration {
  margin-bottom: 10px;
}
.trek-description {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.trek-footer {
  display: flex; /* Flexbox for footer layout */
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center items vertically */
  margin-top: 15px; /* Margin above the footer */
}
.Sea {
  width: 100%;
  padding: 0px 20px;
}
.DestMonth {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
}
.trek-rating {
  font-size: 1.2em; /* Font size for rating */
  color: #ff9800; /* Color for the stars */
}

.trek-btn {
  background-color: #0095ff; /* Button background color */
  color: #ffffff; /* Button text color */
  border: none; /* No border */
  border-radius: 12px; /* Rounded corners */
  padding: 10px 15px; /* Padding inside the button */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s; /* Smooth background color change */
}

.trek-btn:hover {
  background-color: #194ce6; /* Darker shade on hover */
}

.no-results {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-top: 20px;
}

.no-results p {
  background-color: #f9f9f9;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  color: #ff5733;
}
@media (min-width: 769px) {
  .container {
    align-items: center; /* Vertically center the sidebar */
  }

  .sidebar {
    height: auto; /* Ensure it doesn't stretch */
    align-self: center; /* Center the sidebar in its column */
  }
}

.travel-website-footer {
  background-color: #222;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 40px 0;
}

.travel-footer-heading {
  font-size: 18px;
  color: rgb(0, 102, 255);
  margin-bottom: 15px;
}

.travel-footer-container a {
  color: #ff5e14;
  text-decoration: none;
  transition: color 0.3s;
}

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

.travel-footer-container ul {
  list-style: none;
  padding: 0;
}

.travel-footer-contact-info li,
.travel-footer-quick-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-footer-contact-info li i,
.travel-footer-quick-links li a:hover {
  color: #ff5e14;
  font-size: 18px;
}

.travel-footer-quick-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.travel-footer-quick-links a:hover {
  color: #ff5e14;
}

/* Social Links */
.travel-footer-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.travel-footer-social-links a {
  background: #333;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.travel-footer-social-links a:hover {
  background: #1476ff;
  transform: scale(1.1);
}

/* Subscribe Form */
.travel-footer-subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.travel-footer-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  outline: none;
  background: #333;
  color: #fff;
}

.travel-footer-button {
  padding: 10px 20px;
  background: #14a1ff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.travel-footer-button:hover {
  background: #1261e0;
}

/* Footer Bottom */
.travel-footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  /* border-top: 1px solid #444; */
}

.travel-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.col12 {
  display: flex;
}
.col-lg-4 {
  padding: 0px 40px;
  width: 50%;
}
.leftF {
  width: 70%;
}
.travel-footer-contact-info,
.travel-footer-quick-links {
  display: flex;
  flex-direction: column;
}

.travel-footer-contact-info li,
.travel-footer-quick-links li {
  list-style: circle;
  padding: 2px 1px;
  border-radius: 0;
  width: 100%;
  height: auto;
  border: none;
  transform: translateY(0px);
  transition: 0.2s ease-in-out;
  color: black;
}
.travel-footer-contact-info li::before,
.travel-footer-quick-links li::before {
  background-color: transparent;
}
.travel-website-footer {
  background-color: rgb(234, 243, 247);
  color: black;
}
.text-center {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 480px) {
  .col12 {
    flex-direction: column;
  }
}
.travel-footer-social-links {
  padding: 10px;
}
.social-div {
  padding: 20px 36px;
}

/* Background container for blurry shapes */
.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Place it behind all other content */
}

/* Individual blurry shape */
.shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: float 8s infinite alternate;
}

/* Colors for shapes */
.shape:nth-child(1) {
  background: rgba(255, 99, 71, 0.8); /* Tomato */
  top: 10%;
  left: 10%;
}

.shape:nth-child(2) {
  background: rgba(135, 206, 250, 0.8); /* Sky Blue */
  top: 40%;
  left: 70%;
}

.shape:nth-child(3) {
  background: rgba(144, 238, 144, 0.8); /* Light Green */
  top: 80%;
  left: 10%;
}

.shape:nth-child(4) {
  background: rgba(255, 215, 0, 0.8); /* Gold */
  top: 50%;
  left: 50%;
}

.shape:nth-child(5) {
  background: rgba(238, 130, 238, 0.8); /* Violet */
  top: 15%;
  left: 80%;
}

/* Animation for floating effect */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.1);
  }
}
.no-results p {
  height: 570px;
  background: transparent;
}
.trek-image {
  height: 200px;
}
body::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Webkit browsers */
}
