/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&family=Montserrat:wght@400;900&display=swap');

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #f9f9f9;
  color: #676854;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  padding: 30px 0 20px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  width: 300px;
  height: 171px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #676854;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-nav a[aria-current="page"] {
  border-bottom: 2px solid #676854;
}

/* ── Headings ───────────────────────────────────────────────── */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: #676854;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  color: #676854;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 28px;
}

h2:first-child {
  margin-top: 0;
}

/* ── Text ───────────────────────────────────────────────────── */
p {
  color: #777777;
  font-size: 15px;
  line-height: 1.86;
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

p strong {
  color: #676854;
  font-weight: 900;
}

ul, ol {
  color: #777777;
  font-size: 15px;
  line-height: 1.86;
  margin: 0 0 14px 20px;
}

a {
  color: #676854;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

small {
  font-size: 13px;
}

/* ── Separator ──────────────────────────────────────────────── */
.separator {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 20px 0;
}

/* ══════════════════════════════════════════════════════════════
   START PAGE (index.html) – centered narrow column layout
   ══════════════════════════════════════════════════════════════ */

.start-row {
  display: flex;
  margin: 0 -15px;
}

.start-spacer {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.start-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.start-inner {
  padding-top: 35px;
  padding-bottom: 50px;
}

.logo-wrap {
  margin-bottom: 35px;
}

.logo-wrap img {
  width: 300px;
  height: 171px;
  display: block;
}

.fabric-wrap {
  margin-bottom: 35px;
}

.fabric-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.start-content .text-block p {
  color: #777777;
}

.signature {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: 45px;
  font-weight: 400;
  color: #777777;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════════
   SUBPAGE LAYOUT (impressum / datenschutz)
   ══════════════════════════════════════════════════════════════ */

.page-content {
  padding: 40px 0 60px;
}

/* Impressum: two-column layout (≈ 1/3 + 2/3) */
.two-col {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.two-col-left {
  flex: 0 0 360px;
  min-width: 0;
}

.two-col-right {
  flex: 1;
  min-width: 0;
}

/* Datenschutz: single-column */
.single-col {
  margin-top: 20px;
}

.single-col h2 {
  margin-top: 32px;
}

.single-col h2:first-child {
  margin-top: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col {
    flex-direction: column;
    gap: 0;
  }

  .two-col-left {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Header: Logo oben, Nav darunter – kein Abschneiden */
  .site-header {
    padding: 20px 0 16px;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header .logo img {
    width: 180px;
    height: auto;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 11px;
  }

  /* Startseite */
  .start-row {
    flex-direction: column;
  }

  .start-spacer {
    display: none;
  }

  .start-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .logo-wrap img {
    width: 200px;
    height: auto;
  }

  h1 {
    font-size: 22px;
  }
}
