/* Grundlayout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #f5f5f5;
}

.page {
  min-height: 100vh;
  position: relative;
}

/* Logo-Balken rechts */
.boxes--aligned {
  position: absolute;
  top: 60px;
  right: 60px;
  display: flex;
  gap: 12px;
}

.box {
  width: 38px;
  height: 58px;
  border: 2px solid #f5f5f5;
}

.box--filled {
  background: #f5f5f5;
}

/* Block für Claim + jujalex */
.text-block {
  position: absolute;
  top: 135px;
  right: 60px;
  text-align: right;
}

.tagline {
  font-size: 18px;
  margin-bottom: 10px;
  color: #dcdcdc;
}

/* jujalex (beide Seiten) */
.brand-link {
  font-size: 20px;
  text-decoration: none;
  color: #f5f5f5;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.7;
}

/* Kontakttext */
.contact {
  position: absolute;
  top: 150px;
  right: 60px;
  text-align: right;
  font-size: 16px;
}

.contact h1 {
  margin-bottom: 8px;
  font-size: 22px;
}

.contact a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #555;
}

.contact a:hover {
  border-bottom-color: #f5f5f5;
}
