/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,700&family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,700&family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap");

/* Global Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Poppins", sans-serif;
  text-transform: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

:root {
  --dark-green: #112a34;
  --green-color: #8e9c3a;
  --white-color: #fff;
  --secondary-color: #b8c467;
  --primary-color: #f2a30f;
  --background-color: #e9e9e9;
  --background-off-white: #fafafa;
}

::selection {
  background: var(--green-color);
  color: var(--white-color);
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  font-size: 90%;
  display: flex;
  flex-direction: column;
}

#footer-placeholder {
  margin-top: auto;
}
/* Global Section Styling */
section {
  padding: 0 8rem;
  width: 100%;
}

.label {
  font-size: 1.1rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
}

.heading {
  font-size: 3rem;
  margin-top: 1rem;
}

/* Hero Section */
.hero-top {
  padding: 130px 0 80px 0;
  background-image: url("../Images/herosection.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 500px; /* Ensure the section has enough height */
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  position: relative;
}

.hero-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 75%); /* Darker overlay for better contrast */
  z-index: 1;
}

.hero-top h1 {
  font-size: clamp(2.5rem, 8vw, 8.5rem);
  color: var(--white-color); /* White text color */
  background: linear-gradient(
    45deg,
    #ffffff,
    #e0e0e0
  ); /* Subtle white gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-family: "Radio Canada", sans-serif;
  word-wrap: break-word;
  position: relative;
  z-index: 2;
}

.hero-top h3 {
  font-size: clamp(1rem, 3vw, 2rem);
  color: var(--white-color); /* White text color */
  background: linear-gradient(
    45deg,
    #ffffff,
    #e0e0e0
  ); /* Subtle white gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

/* Paragraph Styling */
p {
  color: #666;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Global Blog Post Content Section */
.blog-post-content {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 2rem;
}

.blog-post-main {
  flex: 2;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.post-meta .category {
  font-weight: bold;
  color: var(--primary-color);
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Global Sidebar Section with Booking Form */
.sidebar {
  flex: 1;
  /* padding: 2rem; */
  /* background: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 75px;
  height: fit-content;
  max-width: 300px; /* Reduce sidebar width */
  margin-left: 2rem; /* Add some space between main content and sidebar */
}

.sidebar-content {
  /* flex: 1; */
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 75px; /* Adjust based on your navbar height */
  height: fit-content;
  /* max-width: 300px;  */
}

.sidebar h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: var(--secondary-color);
}

/* Explore More Section */
.explore-more {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--background-off-white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.explore-more h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-green);
  text-align: center;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.explore-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.explore-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.explore-card .card-content {
  padding: 1rem;
  text-align: center;
}

.explore-card h4 {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #333;
}

.explore-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.explore-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: var(--secondary-color);
}

/* Itinerary Section */
.itinerary {
  padding: 2rem;
  text-align: center;
}

.itinerary h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.itinerary .subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.itinerary-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.itinerary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.itinerary-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.itinerary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.itinerary-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f2a30f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  transition: background-color 0.3s ease;
}

#back-to-top:hover {
  background-color: #e59400; /* Darker orange on hover */
}

/* Global Responsive Design */

@media (max-width: 1020px) {
  html {
    font-size: 85%;
  }

  section {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  body {
    display: block;
  }
  .hero-top h1 {
    font-size: clamp(4rem, 6vw, 6rem);
  }

  .hero-top h3 {
    font-size: clamp(0.8rem, 3.5vw, 1.5rem);
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }
  
  .itinerary-grid,
  .details-grid,
  .explore-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-post-content {
    flex-direction: column;
  }

  .sidebar {
    margin-left: 0;
    margin-top: 2rem;
    max-width: 100%;
    position: static; /* Disable sticky behavior on mobile */
  }
}

@media (max-width: 457px) {
  .hero-top h1 {
    font-size: clamp(3rem, 5vw, 4rem);
  }

  .hero-top h3 {
    font-size: clamp(0.8rem, 3.5vw, 1.2rem);
  }
}

