body {
  margin: 0;
  background-color: #0b0f2f;
  color: white;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(11, 15, 47, 0.9),
      rgba(138, 43, 226, 0.8)
    ),
    url("destinations.jpg") center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(11, 15, 47, 0.3) 0%,
    rgba(138, 43, 226, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

.hero-section h1 {
  font-size: 4em;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #fff, #b488f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-section p {
  font-size: 1.5em;
  color: #fff;
  margin: 1em 0 0;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Map Section */
#map-section {
  padding: 4em 2em;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2em;
}

.section-header h2 {
  font-size: 2.5em;
  color: #fff;
  margin: 0 0 0.5em;
  font-weight: 600;
}

.section-header p {
  color: #b488f4;
  font-size: 1.2em;
  margin: 0;
}

#dest-map {
  height: 600px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
  border: 1px solid rgba(138, 43, 226, 0.3);
}

/* Destinations Section */
.destinations-section {
  padding: 4em 2em;
  max-width: 1400px;
  margin: 0 auto;
}

.region-tabs {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}

.region-tab {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.region-tab:hover {
  background: rgba(138, 43, 226, 0.2);
  transform: translateY(-2px);
}

.region-tab.active {
  background: linear-gradient(135deg, #8a2be2, #4b0082);
  border-color: #b488f4;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2em;
  padding: 2em;
  max-width: 1400px;
  margin: 0 auto;
}

.destination-category {
  display: contents;
}

.destination {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 63, 0.8),
    rgba(11, 15, 47, 0.8)
  );
  padding: 1.5em;
  text-align: center;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 43, 226, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: auto;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(180, 136, 244, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destination:hover {
  transform: translateY(-5px);
  border-color: #b488f4;
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.destination:hover::before {
  opacity: 1;
}

/* Footer */
.mega-footer {
  background-color: #1e1e3f;
  color: #ccc;
  padding: 7em 5em 2em;
  border-top: 2px solid #8a2be2;
  margin-top: 5em;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto 5em;
}

.footer-col h4 {
  color: white;
  font-size: 1.2em;
  margin-bottom: 1em;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.8em;
  font-size: 1em;
  color: #ccc;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-col li:hover {
  color: #b488f4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2em;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  font-size: 0.9em;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 3em;
  }

  .hero-section p {
    font-size: 1.2em;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .region-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .region-tab {
    text-align: center;
  }

  #dest-map {
    height: 400px;
  }

  .mega-footer {
    padding: 4em 2em 2em;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination {
  animation: fadeIn 0.5s ease-out forwards;
}
