/* ---------- Fonts ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
}

/* ---------- Reset & variables ---------- */
* {
  box-sizing: border-box;
}

:root {
  --color-navy: #1b2aa0;
  --color-pink: #fbdce7;
  --color-white: #ffffff;
  --content-max-width: 1180px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-navy);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--color-pink);
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header__logo {
  height: 140px;
  width: auto;
}

.site-header a {
  display: inline-block;
  line-height: 0;
}

/* ---------- Main content wrapper ---------- */
main {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

/* ---------- Homepage: quote ---------- */
.quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.quote__text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 24px;
}

.quote__attribution {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

/* ---------- Homepage: gallery ---------- */
.gallery {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
}

.gallery__item {
  flex: 1 1 0;
  min-width: 0;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Homepage: contact line ---------- */
.contact-line {
  text-align: center;
  font-size: 1.1rem;
}

.contact-line__divider {
  margin: 0 12px;
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}

.legal h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 32px 0 8px;
}

.legal p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 8px;
}

.legal p.legal__block {
  margin-bottom: 24px;
}

.legal strong {
  font-weight: 700;
}

.legal__back {
  margin-top: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.site-footer__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.site-footer__brand {
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer__links {
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--color-white);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .site-header {
    padding: 32px 24px;
  }

  .site-header__logo {
    height: 96px;
  }

  main {
    padding: 40px 20px;
  }

  .quote__text {
    font-size: 1.4rem;
  }

  .gallery {
    flex-direction: column;
  }

  .contact-line__item {
    display: block;
  }

  .contact-line__divider {
    display: none;
  }
}
