/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Advent Pro', sans-serif;
  background: linear-gradient(135deg, #fff4e6, #ffe8cc);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
}

.logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #d4a373;
  margin-bottom: 0.5rem;
}

.subtext {
  font-weight: 600;
  color: #555;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 400;
  font-size: 1.1rem;
  color: #333;
}

/* Egyszerű animáció */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
