body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6f8fb;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 18px 8%;
  background: white;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0077b6;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

nav .cta {
  background: #ffb703;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
}


.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  flex-direction: column;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero button {
  background: #ffb703;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
}


.destinations {
  padding: 80px 8%;
  background: white;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

.card h3, .card p {
  padding: 15px;
}


.why {
  padding: 70px 8%;
  background: #eef4fa;
}

.why h2 {
  text-align: center;
  margin-bottom: 35px;
}

.features {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  flex-wrap: wrap;
}

.features div {
  background: white;
  padding: 25px;
  border-radius: 14px;
  width: 260px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}


.contact {
  text-align: center;
  padding: 50px;
  background: #0077b6;
  color: white;
}

footer {
  background: #001d3d;
  color: white;
  padding: 18px;
  text-align: center;
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
    padding: 12px 5%;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  nav a {
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap; /* prevents Book/Now breaking */
  }

  nav .cta {
    padding: 10px 20px;
    border-radius: 24px;
    display: inline-block;
  }

}

.logo img {
  height: 45px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    height: 36px;
  }
}