/* ============================================================
   hostworld.de — listmonk Public Pages
   Brand:  Navy #2B4358 · Yellow #FBDE37 · Amber #FBA837
   ============================================================ */

@font-face {
  font-family: "Biennale";
  src: url("https://www.hostworld.de/fonts/biennale/Biennale-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Biennale";
  src: url("https://www.hostworld.de/fonts/biennale/Biennale-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Biennale";
  src: url("https://www.hostworld.de/fonts/biennale/Biennale-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Biennale";
  src: url("https://www.hostworld.de/fonts/biennale/Biennale-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --hw-navy:   #2B4358;
  --hw-yellow: #FBDE37;
  --hw-amber:  #FBA837;
  --hw-text:   #1a1a1a;
  --hw-muted:  #6b7280;
  --hw-bg:     #f7f7f5;
  --hw-card:   #ffffff;
  --hw-border: #e5e7eb;
}

body {
  font-family: "Biennale", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  background: var(--hw-bg) !important;
  color: var(--hw-text) !important;
  -webkit-font-smoothing: antialiased;
}

/* Header / Logo-Bereich */
.wrap, .container, .content {
  max-width: 600px;
  margin: 48px auto;
  background: var(--hw-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(43, 67, 88, 0.06);
}

h1, h2, h3 {
  font-family: "Biennale", sans-serif !important;
  color: var(--hw-navy) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

p {
  color: var(--hw-text);
  line-height: 1.6;
}

a {
  color: var(--hw-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--hw-amber); }

/* Inputs */
input[type="text"], input[type="email"], input[type="password"],
textarea, select {
  border: 1px solid var(--hw-border) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  background: #fff !important;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--hw-navy) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(43, 67, 88, 0.12) !important;
}

/* Buttons */
button, input[type="submit"], .button, .btn {
  background: var(--hw-yellow) !important;
  color: var(--hw-navy) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
button:hover, input[type="submit"]:hover, .button:hover, .btn:hover {
  background: var(--hw-amber) !important;
}
button:active, .button:active { transform: translateY(1px); }

/* Listen / Auswahl-Items */
.list, ul li {
  border-color: var(--hw-border) !important;
}

/* Footer */
.footer {
  color: var(--hw-muted);
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
}

/* Listmonk-Credit ausblenden */
footer:has(a[href*="listmonk.app"]) {
  display: none !important;
}