/* Landing Page */
.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  background-color: #111;
  color: #fff;
}

.landing img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.landing h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.landing p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.landing a {
  display: inline-block;
  margin: 5px;
  padding: 12px 24px;
  background: #ff3333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.landing a:hover {
  background: #cc0000;
}

.hero__soon {
  margin-top: 20px;
  font-size: 15px;
  color: #666;
  font-style: italic;
}
