* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: #0F172A; /* Midnight Navy */
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

.logo {
  width: clamp(220px, 45vw, 420px); /* kb. 3× desktopon, de mobilon okos */
  margin-bottom: 24px;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.tagline {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 24px;
}

.contact {
  font-size: 14px;
  color: #D4AF37; /* Champagne Gold */
  text-decoration: none;
}

.contact:hover {
  text-decoration: underline;
}

