
/* 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;
}
/* ---------------------- */
/* Global Nav + Footer    */
/* ---------------------- */

/* Top navbar */
.navbar {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 2rem;                 /* spacing between logo and links */
  padding: 1rem;
  background: #fff;          /* white background */
}

.navbar .logo img {
  height: 40px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.navbar .nav-links a {
  color: #00f;               /* keep classic blue links */
  text-decoration: none;     /* remove underline if you want cleaner */
}

.navbar .nav-links a:hover {
  text-decoration: underline; /* hover feedback */
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem 0;
  background: #fff;
}

.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.site-footer .footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links a {
  color: #00f;               /* blue links */
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}
