/* Fonts & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #5E6282;
  background: #fff;
  max-width: 1502px;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}
h1, h2, h4 {
  font-family: 'Volkhov', serif;
  color: #181E4B;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Navbar */
.navbar {
  width: 100%;
  padding: 20px 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, links right */
  position: relative;  /* enables z-index */
  z-index: 10;         /* ensures navbar is above background */
}



.logo {
  font-size: 24px;
  font-weight: 700;
}
.logo span { color: #DF6951; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links li a { color: #181E4B; }
.btn-signup {
  border: 1px solid #181E4B;
  padding: 8px 16px;
  border-radius: 8px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the left */
  gap: 1.2rem;
  padding: 3rem 0 3rem 2rem;   /* Only a little left padding */
  max-width: none;             /* Remove max-width if set */
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.hero-text {
  flex: 1 1 350px;
  min-width: 260px;
  margin: 0;
}
.hero-img {
  flex: 1 1 350px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: -40px; /* Try -40px, adjust as needed (e.g., -30px, -60px) */
}
.hero-img img {
  max-width: 400px;   /* Increase or decrease this value as you like */
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: none;
  background: none;
  display: block;
}
.hero-text h5 {
  color: #DF6951;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-text h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text h1 span { color: #DF6951; }
.hero-text p {
  margin-bottom: 20px;
  max-width: 400px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-orange {
  background: #F1A501;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}
.btn-play {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #686D77;
}
.hero-bg-wrap {
  position:relative ;
}
.hero-bg-decore {
  position: absolute;
  top: 0;
  left: 58vw; /* Start background at about the Flights link. Tweak as needed! */
  right: 0;
  height: 700px; /* Adjust as needed */
  background: url('../decore.png') no-repeat right top;
  background-size: contain; /* Adjust size as needed */
  z-index: 0;
  pointer-events: none;
  opacity: 1; /* Subtle effect */
}

/* Services */
.services {
  text-align: center;
  padding: 80px 8%;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}
.service-card.active {
  border: 2px solid #F1A501;
}

/* Destinations */
.destinations {
  text-align: center;
  padding: 80px 8%;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.dest-info {
  padding: 15px;
}
.dest-info div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

/* Booking */
.booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  gap: 40px;
}
.booking-text h6 { color: #5E6282; }
.booking-text ul {
  margin-top: 20px;
  list-style: none;
}
.booking-text li {
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 80px 8%;
}
.testimonial-card {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.testimonial-card p {
  margin-bottom: 20px;
}

/* Partners */
.partners {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  padding: 60px 8%;
}

/* Newsletter */
.newsletter {
  text-align: center;
  background: #DFD7F9;
  padding: 60px 8%;
  border-radius: 24px;
  margin: 80px 8%;
}
.newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.newsletter input {
  padding: 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
  width: 300px;
}
.newsletter button {
  background: #FF946D;
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 8px 8px 0;
}

/* Footer */
footer {
  background: #fff;
  padding: 60px 8%;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-logo { font-size: 22px; font-weight: bold; }
.footer-logo span { color: #DF6951; }
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-links h4 { margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #5E6282;
}

/* Main Container */
.main-container {
  max-width: 1502px;
  margin: 0;
  background: #fff;
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 4%;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr; /* 2 per row */
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr; /* 2 per row */
  }

  .booking {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile adjustments + hamburger menu */

/* Hide checkbox for menu toggle */
#menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Tablets and smaller (<=992px) */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 4%;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr; /* two per row */
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr; /* two per row */
  }

  .booking {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

/* Phones and smaller (<=768px) */
@media (max-width: 768px) {
  /* Hero */
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-img img {
    max-width: 90vw;
    border-radius: 1.2rem;
    margin-top: 1rem;
  }

  /* Services stack */
  .service-grid {
    grid-template-columns: 1fr; /* stack */
  }

  /* Destinations stack */
  .dest-grid {
    grid-template-columns: 1fr; /* stack */
  }

  /* Navbar */
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    position: absolute;
    top: 70px;   /* just below navbar */
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
  }

  /* Show menu when checkbox is checked */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}


