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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  /* Jemná krémová barva sladěná s pozadím loga */
  background-color: #fefaf2;
  color: #333333;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.content {
  text-align: center;
}

.logo {
  display: block;
  max-width: 90vw;
  width: min(420px, 90vw);
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 2000ms ease-out forwards;
  animation-delay: 0.5s;
}

.contact-label {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a7268;
}

.contact-email {
  font-size: 1.1rem;
  color: #b1494f;
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 73, 79, 0.4);
  padding-bottom: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 2000ms ease-out forwards;
  animation-delay: 2s;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #8f3439;
  border-bottom-color: currentColor;
}

.contact-email:focus-visible {
  outline: 2px solid #8f3439;
  outline-offset: 3px;
}

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

@media (min-width: 768px) {
  .page {
    padding: 3rem;
  }

  .logo {
    width: min(520px, 60vw);
    margin-bottom: 2.5rem;
  }

  .contact-email {
    font-size: 1.2rem;
  }
}


