@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


.mulish-font {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img, video {
  max-width: 100%;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. HEADER */
.site-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.3rem;
}
#TravelCol{
  color: rgba(255, 84, 0, 1);
}
.logo span {
  margin-left: 5px; /* Adds space between "Horizon" and "Travel" */
}

.logo img {
  width: 32px;
  margin-right: 0.5rem;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 3. HERO */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr)) 100px;
  gap: 0.5rem;
}
.search-form input,
.search-form select {
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
}
.search-form button {
  background: #ff6200;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* 4. POPULAR TOURS */
.popular {
  padding: 4rem 0 2rem;
}
.popular h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.popular p {
  text-align: center;
  margin-bottom: 2rem;
}
.popular-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.popular-text {
  flex: 1;
}
.popular-text ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.popular-text .btn {
  background: #ff6200;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}
.popular-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

/* 5. DESTINATIONS GRID */
.destinations {
  padding: 3rem 0;
}
.destinations h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.destinations p {
  text-align: center;
  margin-bottom: 2rem;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1rem;
}
.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.grid-item.large {
  grid-column: span 2;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 0.5rem;
  text-align: center;
}

/* 6. WHY CHOOSE US */
.why-us {
  padding: 3rem 0;
  background: #f9f9f9;
}
.why-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.why-us p {
  text-align: center;
  margin-bottom: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.why-card img {
  width: 48px;
  margin-bottom: 1rem;
}

/* 7. DEALS & DISCOUNTS */
.deals {
  padding: 3rem 0;
}
.deals h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.deals p {
  text-align: center;
  margin-bottom: 2rem;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
}
.deal-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.deal-card img {
  display: block;
}
.deal-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.deal-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
}
.deal-info h3 {
  margin: 0 0 0.5rem;
}
.price {
  font-weight: 700;
  margin: 0.5rem 0;
}
.btn-outline {
  display: inline-block;
  margin: 2rem auto 0;
  padding: 0.7rem 1.5rem;
  border: 2px solid #ff6200;
  color: #ff6200;
  border-radius: 5px;
  text-decoration: none;
}

/* A SIMPLE PERFECT PLACE TO GET the LOST */
.get-lost {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
  flex-wrap: wrap;
}
.lost-text {
  flex: 1;
}
.lost-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.lost-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.lost-text ul {
  margin-bottom: 1.5rem;
  list-style: disc inside;
}
.lost-text .btn {
  background: #ff6200;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}
.lost-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

/* NEWSLETTER section */
.newsletter {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 4rem 0;
  flex-wrap: wrap;
}
.newsletter-form {
  flex: 1;
}
.newsletter-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.newsletter-form p {
  margin-bottom: 1rem;
}
.newsletter-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-form input {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.newsletter-form button {
  background: #ff6200;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.newsletter-promo {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-promo img {
  border-radius: 8px;
}
.promo-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 98, 0, 0.9);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-align: right;
}
.promo-tag span {
  font-size: 1.2rem;
  display: block;
}


/* 8. FOOTER */
.site-footer {
  background: #222;
  color: #ddd;
  padding: 2rem 0;
  text-align: center;
}
.site-footer .social a {
  color: #ddd;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* 9. RESPONSIVE @600px */
@media (max-width: 600px) {
  .nav-toggle {
    display: block;
  }
  .site-nav ul {
    display: none;
  }
  .hero {
    height: 50vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .popular-inner,
  .dest-grid,
  .deals-grid {
    grid-template-columns: 1fr !important;
  }
  .grid-item.large {
    grid-column: auto !important;
  }
  .get-lost,
  .newsletter {
    flex-direction: column;
  }
}
