html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #B1D9DB;
  color: #22223b;
  
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px 0 48px;
  background: transparent;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #22223b;
  letter-spacing: 1px;
}

.nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #22223b;
  font-weight: 500;
  font-size: 1rem;
}

.sign-up-btn {
  background: none;
  border: 1px solid #22223b;
  border-radius: 6px;
  padding: 8px 24px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 48px 0 48px;
  min-height: 480px;
}

.hero-content {
  max-width: 480px;
}

.section-label {
  color: #ff6f61;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 18px 0 18px 0;
  line-height: 1.1;
}

.hero-content p {
  color: #4a4e69;
  font-size: 1rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-btn {
  background: #ffb703;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,183,3,0.15);
  transition: background 0.2s;
}

.primary-btn:hover {
  background: #ffa600;
}

.play-demo-btn {
  background: none;
  border: none;
  color: #22223b;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.play-icon {
  background: #fff;
  color: #ff6f61;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-image img {
  object-fit: cover;
  border-radius: 24px;

}

.services {
  margin: 64px 0 0 0;
  padding: 0 48px;
  text-align: center;
  position: relative;
}

.category-label {
  color: #4a4e69;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.services h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 12px 0 32px 0;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 32px 24px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: #4a4e69;
  font-size: 0.95rem;
}


.destinations {
  margin: 64px 0 0 0;
  padding: 0 48px;
  text-align: center;
}

.top-selling-label {
  color: #4a4e69;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.destinations h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 12px 0 32px 0;
}

.destinations-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.destination-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  width: 300px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s;
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.destination-info {
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.destination-info > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
}
.weather{
  display: flex;
  font-size: 0.95rem;
  align-self: left;
}
.price {
  color: #ff6f61;
  font-weight: 700;
}

.trip-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a4e69;
  font-size: 0.95rem;
}

.newsletter {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin: 64px 48px 0 48px;
  padding: 40px 32px;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #22223b;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #b6e2e3;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background: #6ec6ca;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #4bb6bc;
}

.footer {
  display: flex;
  justify-content: space-between;
  background: transparent;
  padding: 64px 48px 24px 48px;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #4a4e69;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 64px;
  margin-bottom: 24px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #22223b;
}

.footer-links a {
  color: #4a4e69;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff6f61;
}

.footer-bottom {
  text-align: center;
  color: #4a4e69;
  font-size: 0.9rem;
  margin-top: 24px;
}

#scrollTopBtn {
  display: none; 
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#scrollTopBtn:hover {
  background-color: #555;
}

.controls{
  margin-bottom:16px; 
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.destinations input[type="text"]{
  padding:8px 12px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:1rem;
}

select{
  padding:8px 12px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:1rem;
}

@media (max-width: 1100px) {
  .hero, .services-list, .destinations-list, .footer-links {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    margin-top: 32px;
  }
  .services-list, .destinations-list {
    gap: 24px;
  }
  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .header, .hero, .services, .destinations, .newsletter, .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 0;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
  .services-list, .destinations-list {
    flex-direction: column;
    gap: 18px;
  }
    .newsletter-form {
      flex-direction: column;
    }
  }