/* ============================================================
   TextSells® / Laura Gintar
   Zentrale Stilvorlage für alle Seiten.
   Farben, Schriften, Kopfbereich und Grundbausteine
   werden HIER geändert und wirken überall.
   ============================================================ */

/* ---------- Design-Tokens ---------- */

:root {
  --white:    #ffffff;
  --grau-hell: #f1f1f0;   /* leiser Wechsel zwischen Abschnitten */
  --grau:     #cfcecc;    /* kraeftiger Akzent, z. B. Zitat-Sektion */
  --dark:     #1a1918;
  --text:     #3d3a35;
  --label:    #5c584f;
  --red:      #d35400;
  --gold:     #e4ac00;
  --goldtext: #231a00;
  --line:     #eceae7;
  --text-dunkel: #f4f2ee;
  --text-dunkel-dim: #ccc6bb;

  --schrift-head: "Familjen Grotesk", system-ui, sans-serif;
  --schrift-text: "Raleway", system-ui, sans-serif;
}

/* ---------- Grundlagen ---------- */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--white);
  color: var(--dark);
  font-family: var(--schrift-text);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--schrift-head);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 0;
}

p { margin: 0; line-height: 1.7; }

/* Innerer Bereich, auf allen Seiten gleich */
.wrap { width: min(calc(100% - 64px), 1240px); margin-inline: auto; }

/* ---------- Kopfbereich ---------- */

header { border-top: 1px solid var(--line); background: var(--white); }
.header-inner { min-height: 94px; display: grid; grid-template-columns: 180px 1fr 180px; align-items: center; gap: 28px; }
.logo img { height: 62px; width: auto; }
nav { display: flex; justify-content: center; gap: 34px; font-size: 15px; white-space: nowrap; }
.newsletter {
  justify-self: end; background: var(--gold); color: var(--goldtext);
  padding: 14px 26px; border-radius: 5px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}

/* ---------- Wiederkehrende Bausteine ---------- */

.eyebrow {
  align-self: flex-start; display: inline-block;
  border: 1px dashed #c9c3b4; border-radius: 5px; padding: 9px 16px;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--label);
}

.red { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 34px;
  background: var(--gold); color: var(--goldtext); border-radius: 5px;
  font-size: 13px; letter-spacing: .11em; text-transform: uppercase; font-weight: 700;
  align-self: flex-start;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }

/* Pommestüte in der Textzeile */
.fries { height: .82em; width: auto; vertical-align: -.08em; margin-left: .10em; display: inline-block; }

/* ---------- Kopfbereich mobil ---------- */

@media (max-width: 1100px) {
  .wrap { width: min(calc(100% - 44px), 1240px); }
  .header-inner { grid-template-columns: 120px 1fr 150px; }
  nav { gap: 20px; font-size: 14px; }
}
@media (max-width: 820px) {
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .logo img { height: 52px; }
  nav { display: none; }
}
@media (max-width: 520px) {
  .wrap { width: min(calc(100% - 36px), 1240px); }
  .eyebrow { font-size: 11px; padding: 8px 11px; letter-spacing: .16em; }
  .btn { width: 100%; padding: 0 20px; }
}

/* ---------- Fusszeile ---------- */

footer { background: var(--dark); }
.footer-inner {
  min-height: 84px; padding: 26px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 36px;
}
.footer-copyright { font-size: 13px; color: var(--text-dunkel); white-space: nowrap; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { font-size: 13px; color: var(--gold); white-space: nowrap; }
.footer-nav a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: inline-flex; color: var(--gold); }
.footer-social a:hover { opacity: .75; }
.footer-social svg { width: 18px; height: 18px; display: block; }

@media (max-width: 700px) {
  .footer-inner { justify-content: center; text-align: center; padding: 30px 0; }
  .footer-nav { justify-content: center; width: 100%; }
}
