/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Adventure-inspired gradient */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.content {
  padding: 30px;
  max-width: 700px;
}

.title {
  font-size: 4rem;
  font-family: 'Kanit', sans-serif;
  margin-bottom: 15px;
  color: #ffdd57;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #b2ebf2;
}

.info {
  font-size: 1rem;
  color: #e0e0e0;
  font-style: italic;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .info {
    font-size: 0.9rem;
  }
}
