/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Grundlayout */
body {
  height: 100vh;
  background: #0f1113;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
}

/* Zentrierung */
.center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.brand {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-family: 'Inter', sans-serif;
  font-weight: 700;          
  letter-spacing: 0.06em;
  margin: 0;
}

.light {
  font-weight: 300;
}


.bronze {
  color: #b87333; /* Bronze */
}

/* Claim */
.claim {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.85;
}

/* Content */
.content {
  font-size: 0.95rem;
  opacity: 0.85;
}

.divider {
  color: #b87333;
  font-size: 1.2rem;
  margin: 1.2rem 0 1.6rem 0;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* Kontakt */
.contact a {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #b87333;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.footer {
  position: fixed;
  bottom: 24px;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

/* Hide footer on small or zoomed viewports */
@media (max-height: 600px), (max-width: 480px) {
  .footer {
    display: none;
  }
}

