/* Scoped to #landing-page-root (index.html's <body> id) so these rules
   can never bleed onto another page that happens to load this file. */
#landing-page-root,
#landing-page-root * {
  box-sizing: border-box;
}

#landing-page-root {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Background Image + Dark Overlay for readability */
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url('../assets/landing.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  padding: 2rem;
  max-width: 600px;
  margin: 0;
}

.hero-container h1 {
  font-size: 3.5rem;
  margin: 0 0 1rem;
  color: #ffffff;
  letter-spacing: -0.05em;
}

.hero-container p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-container .btn {
  display: inline-block;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-container .btn:hover {
  background-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.3);
}