
body {
  margin: 0;
  font-family: sans-serif;
  background: black;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.language-switch button {
  background: transparent;
  color: white;
  border: none;
  font-size: 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

.hero-section {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom right, #6b21a8, #3b82f6, #3730a3);
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  margin: 0.5rem;
  cursor: pointer;
}

.hero-buttons button:first-child,
#exploreKDMC2 {
  background: #f97316;
  color: white;
}

.hero-buttons button:last-child,
#visitPark2 {
  background: #3b82f6;
  color: white;
}

.about-section {
  background: #1f2937;
  padding: 4rem 2rem;
  text-align: center;
}

.about-section p {
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
}

.cards-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: linear-gradient(to bottom right, #1f2937, #111827);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer {
  text-align: center;
  background: #0f172a;
  padding: 2rem;
  color: #9ca3af;
}
