/*
 * UnderConstructionPage
 * Custom theme: Partnerschaft für Demokratie Köthen (Anhalt)
 * Farbwelt: Petrol / Sand / Koralle / Sonnengelb / Grün / Hellblau / Anthrazit
 */

:root {
  --color-petrol: #145C63;
  --color-petrol-dark: #0F4A50;
  --color-sand: #F3EEE7;
  --color-sand-light: #FAF7F2;
  --color-koralle: #E06850;
  --color-sonnengelb: #E7B94C;
  --color-gruen: #7BAA7B;
  --color-hellblau: #BBD1CF;
  --color-anthrazit: #222222;
  --color-text: #2A2A2A;
  --color-text-muted: #5A5A5A;
  --color-border: rgba(20, 92, 99, 0.18);

  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 6px rgba(20, 92, 99, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 92, 99, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-sand);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(187, 209, 207, 0.55) 0%, rgba(187, 209, 207, 0) 38%),
    radial-gradient(circle at 92% 18%, rgba(224, 104, 80, 0.18) 0%, rgba(224, 104, 80, 0) 32%),
    radial-gradient(circle at 88% 92%, rgba(123, 170, 123, 0.22) 0%, rgba(123, 170, 123, 0) 38%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* -------- Header / Logo PfD -------- */

.site-header {
  text-align: center;
  margin-bottom: 24px;
}

.logo-pfd {
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* -------- Hero -------- */

#hero-image {
  text-align: center;
  margin: 8px auto 24px auto;
}

#hero-image img {
  max-width: 420px;
  width: 80%;
  height: auto;
}

/* -------- Headline + Lead -------- */

h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-petrol);
  text-align: center;
  margin: 8px auto 24px;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.content {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* -------- Kontakt-Card (Tina Rose) -------- */

.contact-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-koralle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 560px;
  margin: 0 auto 56px;
  box-shadow: var(--shadow-md);
}

.contact-card__lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-petrol);
  margin: 0 0 8px;
}

.contact-card__body {
  margin: 0 0 16px;
  color: var(--color-text);
}

.contact-card__person {
  margin: 0;
  line-height: 1.7;
}

.contact-card__person strong {
  color: var(--color-petrol);
  font-size: 17px;
  font-weight: 600;
}

.contact-card a {
  color: var(--color-petrol);
  text-decoration: underline;
  text-decoration-color: rgba(20, 92, 99, 0.35);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.contact-card a:hover {
  color: var(--color-koralle);
  text-decoration-color: var(--color-koralle);
}

/* -------- Footer -------- */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 36px;
  margin-top: 8px;
}

.funding {
  text-align: center;
  margin-bottom: 36px;
}

.logo-funding {
  max-width: 460px;
  width: 90%;
  height: auto;
}

/* -------- Impressum -------- */

.imprint h2 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-petrol);
  text-align: center;
  margin: 0 0 24px;
}

.imprint__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.imprint__col h3 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-petrol);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0;
}

.imprint__col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}

.imprint__col a {
  color: var(--color-petrol);
  text-decoration: none;
}

.imprint__col a:hover {
  color: var(--color-koralle);
  text-decoration: underline;
}

.imprint__note {
  font-size: 12.5px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 16px auto 0;
  max-width: 720px;
}

/* -------- Responsive -------- */

@media (max-width: 767px) {
  .page-wrapper {
    padding: 24px 18px 40px;
  }

  .logo-pfd {
    max-width: 280px;
  }

  #hero-image img {
    max-width: 320px;
    width: 88%;
  }

  h1 {
    font-size: 26px;
    margin: 6px auto 18px;
  }

  .content {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact-card {
    padding: 22px 22px;
    margin-bottom: 40px;
  }

  .contact-card__lead {
    font-size: 17px;
  }

  .imprint__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .imprint__col {
    text-align: center;
  }

  .logo-funding {
    width: 95%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .imprint__grid {
    grid-template-columns: 1fr 1fr;
  }

  .imprint__col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
}
