* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  position: sticky;

  z-index: 100;
  box-shadow: 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.hero {
  background: url(https://images.pexels.com/photos/287240/pexels-photo-287240.jpeg);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.destinations {
  padding: 60px 20px;
}

.dest {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.dest-image-1 img {
  width: 100%;
  height: 250px;
}

.dest-image-2 img {
  width: 100%;
  height: 250px;
}

.dest-image-3 img {
  width: 100%;
  height: 250px;
}
.dest-info {
  padding: 20px;
  background: white;
}

.dest-info h3 {
  margin-bottom: 10px;
  color: #333;
}

.dest-info p {
  color: #666;
  margin-bottom: 15px;
}

footer {
  background: #2c3e50;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #34495e;
}

@media (min-width: 576px) {
  .logo {
    font-size: 1.5rem;
    width: auto;
    text-align: left;
  }

  .nav-links {
    width: auto;
    gap: 1rem;
    font-size: 0.9rem;
  }

  nav {
    justify-content: space-between;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .destinations {
    padding: 60px 20px;
  }

  .dest-image {
    height: 250px;
  }

  footer {
    padding: 40px 20px;
  }
}

@media (min-width: 992px) {
  .logo {
    font-size: 1.8rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero {
    padding: 120px 20px;
  }

  .title {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 20px;
  }
}
