/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero Banner */
.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  filter: brightness(70%);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}
.btn-orange {
  background: #ff6600;
  color: white;
}
.btn-blue {
  background: #0077cc;
  color: white;
}
.btn:hover {
  opacity: 0.9;
}

/* Sections */
section {
  padding: 50px 20px;
  text-align: center;
}
.attractions .cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  width: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 10px 0;
}
.card .link {
  display: block;
  padding: 10px;
  color: #0077cc;
  text-decoration: none;
}

/* Guides */
.guides .icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.icon img {
  width: 200px;
  border-radius: 8px;
}
.icon h3 {
  margin-top: 10px;
}

/* Footer CTA */
footer.cta {
  background: #0077cc;
  color: white;
  padding: 40px 20px;
}
footer.cta h2 {
  margin-bottom: 10px;
}
footer.cta .btn {
  background: white;
  color: #0077cc;
}
footer.cta .disclaimer {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .attractions .cards,
  .guides .icons {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
  }
  .icon img {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .hero img {
    height: 60vh;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  section {
    padding: 30px 10px;
  }
  footer.cta h2 {
    font-size: 1.4rem;
  }
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar .logo h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #ff6600;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

