@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  background: radial-gradient(ellipse at top, #1b3a1b 0%, #0a140a 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.hero {
  text-align: center;
  animation: fadeIn 0.9s ease both;
}

.hero .logo {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 0 28px rgba(232, 184, 75, 0.4));
  margin-bottom: 1.75rem;
}

.hero h1 {
  color: #e8b84b;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.35;
}

footer {
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
