* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; }
.home {
  min-height: 100vh;
  background-image: url('/assets/background.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.logo { width: 200px; margin-bottom: 1.5rem; }
.tagline {
  font-size: 1.5rem;
  color: white;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, 2px 2px 6px rgba(0,0,0,0.8);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.subtitle {
  font-size: 1rem;
  color: white;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 2rem;
  font-style: italic;
}
.buttons { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; }
.btn {
  display: block;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.btn-primary { background-color: #c9a84c; color: #1a1a2e; }
.btn-secondary {
  background-color: #333333;
  color: white;
  border: 1.5px solid white;
}
.btn:hover { opacity: 0.85; }