/* Základné nastavenia */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #f9f5f1 0%, #f1ebe6 100%);
  color: #3b2f2f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

/* Karta so značkou */
.card {
  background: #fffaf5;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  max-width: 420px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

/* Logo a slogan */
.logo {
  font-size: 2.2rem;
  font-weight: 600;
  color: #8b6e4e;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1rem;
  color: #5c4a3b;
  margin-bottom: 2rem;
}

/* Tlačidlá */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: block;
  text-decoration: none;
  background-color: #d8c4a3;
  color: #3b2f2f;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn:hover {
  background-color: #c7b28f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #7a6a5b;
}

/* Animácia */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobilná responzivita */
@media (max-width: 480px) {
  .card {
    padding: 2.5rem 1.5rem;
  }

  .logo {
    font-size: 1.8rem;
  }
}

header img {
  width: 85%;
  height: auto;
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  background-color: #a78a5a;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  font-weight: 500;
  width: 100%;
  transition: all 0.25s ease;
}

a.button:hover {
  background-color: #a78a5a;
  transform: translateY(-2px);
}

a.button i {
  font-size: 1.2rem;
}
