/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: white;
  font-size: 1rem;
}
/* Navigation styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} 

/* Header Styles */
header {
 /* background-color: lightyellow/*#85a8c5*/;
    height: 60px;
  width: 100%;
    color: #333;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* For absolute positioning of mobile nav */
  z-index: 1000;
  top: 0;
}

.logo img{
  height: 60px;
  margin-top: 5px;
  background-size: cover;
  
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: orange;
    font-weight: 800;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: #007bff;
}

.desktop-nav ul li.cta a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.desktop-nav ul li.cta a:hover {
    background-color: #0056b3;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    height: 25px;
  margin-right: 10px;
  margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked + .menu-icon .line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#menu-toggle:checked + .menu-icon .line:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .menu-icon .line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    top: 100%; /* Positioned below the header */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none; /* Hidden by default */
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block; /* Make links full width for easier tapping */
    padding: 10px 0;
}

.mobile-nav ul li a:hover {
    color: #007bff;
}

.mobile-nav ul li.cta a {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block; /* Adjust for centering */
}

.mobile-nav ul li.cta a:hover {
    background-color: #0056b3;
}

/* nav end */

/* main home page image */
.hero-section {
  position: relative;
  display: flex;
  width: 100hw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
  cursor: pointer;
}
.hero-image{
  display: flex;
  position: absolute;
  width: 100hw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 1;
  object-fit: cover;
}

.hero-image .section-content-plate{
  display: flex;
  position: absolute;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  margin: 0;
}
.section-content-plate .section-content{
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
}
.section-content h1{
  font-size: 2rem;
  font-weight: 800;
  width: 70%;
  text-align: left;
  margin-left: 20px;
  color: orange;
  
}

.section-content p{
  width: 55%;
  text-align: left;
  margin-left: 20px;
  margin-top: 10px;
 /* background-color: rgba(245, 245, 245, 0.5);*/
  font-weight: 400;
  font-size: 1rem;
  color: white;
}
.hero-button{
  margin-top: 10px;
  margin-left: 20px;
  font-size: 1rem;
  padding: 5px;
  background-color: orangered;
  color: white;
  cursor: pointer;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}




.features{
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(255,255,255,0.35));
  backdrop-filter: blur(5px);
  border-radius: 16px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.20);
}

.features h2{
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #222;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature{
  text-align: center;
  padding: 10px;
}

.icon{
  font-size: 40px;
  color: #333;
  margin-bottom: 15px;
}

.feature h3{
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

.feature p{
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* package section start */
/* himachal*/

main{
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  
}

main .main-heading{
  margin-top: 10px;
  width: 100%;
  line-height: 30px;
  font-size: 1.5rem;
  text-align: center;
  background-color: black;
  color: white;
  text-transform: uppercase;
  text-decoration: underline dotted;
  font-family: 'Lora', serif;
}
main .budget{
  height: auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10px;
}

main .budget .package-card{
  margin-top: 15px;
  height: 450px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #007bff;
  position: relative;
  border: 1px solid black;
  border-radius: 10px;
}

main .budget .package-card .package-card-img img{
  object-fit: cover;
  height: 400px;
  width: 100%;
  position: absolute;
  display: flex;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.package-card .package-card-img h3{
  font-size: 2rem;
  width: 100%;
  text-align: center;
  position: absolute;
}

main .budget .package-card p a{
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  background-color: #007bff;
  cursor: pointer;
  padding: 13.5px 16px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

main .budget .package-card p a:hover {
    background-color: #FFA500;
}

/* himachal end */


/* why us */
.why-us{
  background-color: #e6e6fa;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.why-us h2{
  font-family: 'Lora', serif;
  color: #b8860b;
  text-align: center;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}
.why-us p{
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #555;
  text-align: center;
}

/* why us end */
.about-us{
  display: grid;
  place-items: center;
  width: 100%;
  margin: 20px 0px;
}
.about-us .about{
  display: flex;
  width: 90%;
  border: 2px solid gray;
  border-radius: 10px;
  padding: 10px;
  background-color: transparent;
  font-size: 18px;
  font-family: alice;
  justify-content: center;
  align-items: center;
}

/* travel guide section start */ 

.destination-guide{
  background-color: antiquewhite;
  margin-top: 20px;
  width: 100%;
}
.guide-image{
  background-image: url("guide.png");
  min-height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.guide-text-container {
  background-color: rgba(0, 0, 0, 0.5); /* Background for readability */
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.destination-guide h2{
  font-size: 2.5rem;
  text-transform: capitalize;
  margin: 0;
  
}
.destination-guide .guide-image p{
  font-size: 1.5rem;
  margin: 10px 0 0 0;
  color:   aqua;
}
.place-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 10px;
  padding-bottom: 10px;
}

.place-list ul{
  list-style: none;
}

.place-list ul li{
  display: flex;
  list-style: none;
  text-transform: capitalize;
}

.place-list ul li a{
  text-decoration: none;
  font-size: 20px;
  display: flex;
  font-family: "serif", times new roman;
  line-height: 25px;
}

/* travel guide section end */

/* footer section start */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-container .contact{
  container-type: inline-size;
}
.contact p{
  font-size: clamp(1rem, 19cqi, 3rem);
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}
.footer-section h2 {
  margin-bottom: 10px;
      
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-section p{
  font-size: 15px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}
.social a {
  color: #fff;
  margin: 0 10px;
  font-size: 15px;
}
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #777;
  padding-top: 10px;
}


/* footer section end */


/* About page styling start */
section .about-us h2{
  margin-left: 38%;
  margin-right: 37%;
  font-size: 3rem;
}
section .about-us p{
  font-family: "times new roman";
}


/* about us section end */

/* contact us page styling start */


.contact-container {
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-container h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #00838f; /* Teal heading color */
}

.contact-form {
    width: 60%;
    padding-right: 30px;
    box-sizing: border-box;
}

.contact-info {
    width: 35%;
    padding-left: 30px;
    box-sizing: border-box;
    border-left: 2px solid #b2ebf2; /* Light teal border */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #37474f; /* Dark gray label color */
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #b2ebf2;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #00acc1; /* Brighter teal focus color */
    outline: none;
}

button {
    background-color: #00acc1;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00838f;
}
/* contact us page end */

/* guide section pages styling start */

/* Main guide container styling */
.guide {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Content wrapper */
.guide-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures the border-radius is applied to child elements */
}

/* pages banner image and title */

.guide-page-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Guide details section */

/* Container for responsiveness */
.table-responsive {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Table Styling */
table .reach {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensures table doesn't squash on small screens */
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styling */
table.reach thead {
  background-color: #2c3e50; /* Dark elegant blue/grey */
  color: #ffffff;
}

table .reach th {
  padding: 15px;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #1a252f;
}

/* Body Styling */
table.reach td {
  padding: 12px 15px;
  border-bottom: 1px solid #eeeeee;
  color: #333;
  font-size: 15px;
}

/* Zebra Striping for readability */
table .reach tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Hover effect */
table .reach tbody tr:hover {
  background-color: #f1f4f9;
  transition: background-color 0.3s ease;
}

/* Mobile Hint */
.table-responsive::after {
  content: "← Scroll to view more →";
  display: block;
  text-align: center;
  font-size: 12px;
  color: #888;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .table-responsive::after {
    display: none; /* Hide scroll hint on desktop */
  }
}

/* 2nd */

/* Survival Guide Section */
.survival-guide {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.survival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.survival-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff4d4d; /* Use your brand color here */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.survival-card:hover {
    transform: translateY(-5px);
}

.survival-card i {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.survival-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.survival-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Make sure the H2 stays outside for SEO */
.survival-guide h2 {
    text-align: left;
    margin-bottom: 10px;
}

/* 3rd for FAQs section */
/* --- FAQ Section Styling --- */
.faq {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 40px 0;
    border-top: 2px solid #ff4d4d;
}

.faq h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px auto;
    border: 1px solid #ff4d4d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e67e22; /* Changes border to your accent color on hover */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h3 {
    background-color: #f8f9fa;
    margin: 0;
    padding: 18px 25px;
    font-size: 1.1rem;
    color: #34495e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    padding: 20px 25px;
    margin: 0;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 1.6rem;
    }
    .faq-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* new styling end*/


.view-packages{
  display: flex;
  justify-content: space-evenly;
  font-weight: 600;
}
.guide-details .view-packages p {
  font-size: 1.2rem;
}
.guide-details {
    padding: 20px 40px;
}

.guide-details h2 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-top: 0px;
    margin-bottom: 5px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

.guide-details p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.guide-details ul {
    list-style-type: none; /* Removes default bullets */
    padding-left: 0;
}

.guide-details ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%230056b3" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.354 5.646a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7 9.293l3.646-3.647a.5.5 0 0 1 .708 0z"/></svg>') no-repeat left 4px; /* Adjusted vertical position */
    padding-left: 28px; /* Increased padding for better spacing */
    margin-bottom: 10px;
    font-size: 1rem;
}

.guide-details ul ul {
    margin-top: 10px;
    padding-left: 20px;
}

.guide-details ul ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%234CAF50" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zM6.5 11.5L4 9l1.5-1.5L7 8.5 10.5 5 12 6.5 6.5 11.5z"/></svg>') no-repeat left 4px; /* Adjusted vertical position */
}


/* Styling for the embedded map */
.guide-details iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    margin-top: 15px;
}

/* Specific styling for the weather paragraph */
.weather {
    font-style: italic;
    color: #555;
}

/* Styling for links within the guide */
.guide-details a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.guide-details a:hover {
    text-decoration: underline;
}


/* --- Responsive Design --- */

/* For tablets and smaller desktops */
@media (max-width: 768px) {
    .guide-page-image h1 {
        font-size: 3rem;
    }

    .guide-details {
        padding: 20px;
    }

    .guide-details h3 {
        font-size: 1.5rem;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .guide-page-image h1 {
        font-size: 2rem;
    }

    .guide-details {
        padding: 15px;
    }

    .guide-details h3 {
        font-size: 1.3rem;
    }

    .guide-details p, .guide-details ul li {
        font-size: 0.9rem;
    }

    .guide-details iframe {
        height: 300px;
    }
}


/* guide section styling end */ 

/* Mobile responsiveness */
@media (max-width: 768px) {
  .desktop-nav {
        display: none; /* Hide desktop nav on smaller screens */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu */
    }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  nav img {
    width: 80px; /* Adjust logo size on smaller screens */
  }
  
  section .image{
    min-height: 300px;
    width: 100%;
    background-size: cover;
  }
  .hero-content .content{
  flex: 1;
  padding: 10px;
}
/*
.hero-content .content h1{
  font-size: 1rem;
 
}
  */
.hero-content .content p{
  font-size: 0.8rem;
}
  
  main .main-heading{
    font-size: 1rem;
  }
  
  main .budget .package-card{
    margin-top: 15px;
    height: 200px;
    width: 100%;
    padding-bottom: 2rem;
  }
  
    .budget .package-card h3{
      margin-top: 3px;
      font-size: 1.2rem;
  }
  main .budget .package-card .package-card-img img{
    max-height: 160px;
    width: 100%;
  }
  
  main .budget .package-card p a{
    font-size: 1rem;
    width: 100%;
    margin-left: 0px;
    bottom: 0px;
    text-align: center;
    padding: 9px 16px;
  }
  
 /* why us start */
  .why-us h2{
    font-size: 1.5rem;
  }
  .why-us p{
    font-size: 1rem;
  }
  .destination-guide .guide-image{
    min-height: 200px;
  }
  .destination-guide h2{
    font-size: 1.8rem;
  }
  
  .destination-guide .guide-image p{
    font-size: 1rem;
  }
  .place-list ul li a{
    font-size: 1rem;
    line-height: 1.5;
  }

  /* guide details end */
  .contact-container{
    flex-direction: column;
    width: 95%;
    padding: 20px;
  }
  .contact-form, .contact-info{
    width: 100%;
    padding: 0;
    border-left: none;
  }

  .contact-info{
    margin-top: 25px;
  }
  
  
}

