@font-face {
  font-family: "DIN Pro";
  src: url("fonts/DINPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --blue: #0b4b87;
  --gold: #b08a45;
  --paper: #fbf8f1;
  --text: #1f2f3a;
}.gold {
  color: var(--gold);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--blue);
  font-family: "DIN Pro", Arial, sans-serif;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 165px;
  pointer-events: none;
  overflow: hidden;
}

.hero-curve {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -135px;
  height: 230px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
  opacity: 0.72;
  filter: blur(22px);
}

/* CLAIM */

.claim {
  text-align: center;
  background: var(--paper);
  padding: 135px 24px 90px;
}

.claim h1 {
  font-weight: 400;
  line-height: 1.18;
  color: var(--blue);
  margin-bottom: 22px;
}

.claim-main {
  display: block;
  font-size: clamp(48px, 5.4vw, 74px);
  letter-spacing: 0.02em;
}

.claim-sub {
  display: block;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 12px;
  line-height: 1.3;
}

.claim p {
  color: var(--gold);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.5;
  margin-top: 26px;
}

/* IDEE */

.idea {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
  padding: 30px 11% 80px;
  background: var(--paper);
}

.idea::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  width: 1px;
  height: 340px;
  background: linear-gradient(
    to bottom,
    rgba(176, 138, 69, 0),
    rgba(176, 138, 69, 0.35),
    rgba(176, 138, 69, 0)
  );
  transform: translateX(-50%);
  opacity: 0.35;
}

.idea-text {
  position: relative;
  padding-left: 26px;
}

.idea-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.85;
}

.idea-text h2 {
  color: var(--blue);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

.idea-text p {
  max-width: 620px;
  color: var(--blue);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.55;
}

.idea-text p + p {
  margin-top: 22px;
}

.idea-statement {
  color: var(--blue);
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.18;
  font-weight: 400;
}


/* THEMEN */

.topics {
  background: var(--paper);
  text-align: center;
  padding: 25px 8% 70px;
}

.topics h2 {
  color: var(--blue);
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  position: relative;
  padding-bottom: 18px;
}
.topics h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 270px;
  height: 2px;

  background: var(--gold);
  border-radius: 2px;
  opacity: 0.75;
}

.topics h2::before {
  display: none;
}

.topic-map {
  position: relative;
  width: min(760px, 100%);
  height: 520px;
  margin: 0 auto;
}

.topic-map {
  display: none;
}

.center-logo {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 380px;
  z-index: 1;
}

.center-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.topic {
  position: absolute;
  color: var(--blue);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.3;
  white-space: nowrap;
  z-index: 2;
}

.t1 {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.t2 {
  right: 13%;
  top: 24%;
}

.t3 {
  right: 3%;
  top: 50%;
}

.t4 {
  right: 14%;
  top: 74%;
}

.t5 {
  left: 50%;
  top: 87%;
  transform: translateX(-50%);
}

.t6 {
  left: 13%;
  top: 74%;
}

.t7 {
  left: 3%;
  top: 50%;
}

.t8 {
  left: 13%;
  top: 24%;
}
/* Testbild Themenkreis */

.topic-image-test {
  max-width: 920px;
  margin: 50px auto 0;
  text-align: center;
}

.topic-image-test img {
  width: 100%;
  height: auto;
  display: block;
}

/* MITGLIEDER */

.members {
  background: var(--paper);
  text-align: center;
  padding: 50px 3% 90px;
}

.members h2 {
  color: var(--blue);
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 110px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.members h2::before,
.members h2::after{
  content:"";
  width:2px;
  height:85px;
  background:var(--gold);
  opacity:.75;
  border-radius:2px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1500px;
  margin: 45px auto 0;
}

.member-card {
  min-height: 390px;
  padding: 24px 18px;

  border: 1px solid rgba(176, 138, 69, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 6px 24px rgba(11, 75, 135, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(11, 75, 135, 0.1);
  border-color: rgba(176, 138, 69, 0.55);
}

.member-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;

  border: 2px solid rgba(176, 138, 69, 0.45);
  background: rgba(176, 138, 69, 0.03);

  margin-bottom: 22px;
  flex-shrink: 0;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
}

.member-photo img.karin-photo {
  object-position: center 10%;
}
.member-photo img.silke-photo {
  object-position: center;
  transform: translateY(-6px) scale(1.06);
}
.member-photo img.michaela-photo {
  object-position: center;
  transform: translateY(-6px) scale(1.06);
 } 
.member-photo img.tamara-photo {
  object-position: center;
  transform: translateY(-6px) scale(1.06);
}
.member-photo img.petra-photo {
  object-position: center;
  transform: translateY(-3px) scale(1.20);
}
.member-photo img.nina-photo {
  object-position: center;
  transform: translateY(6px) scale(1.06);
}
.member-card:hover .member-photo {
  transform: scale(1.03);
  border-color: rgba(176, 138, 69, 0.75);
}

.member-card h3,
.member-brand,
.member-focus,
.member-text,
.member-link {
  width: 100%;
  text-align: left;
}

.member-card h3 {
  margin: 18px 0 10px;
  font-size: 26px;
  font-weight: 400;
  color: var(--blue);
}

.member-brand {
  color: var(--gold);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 18px;
}

.member-focus {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.member-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: auto;
}

.member-link {
  align-self: flex-start;
  margin-top: 24px;
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  transition: letter-spacing 0.25s ease;
}

.petra-link {
  margin-top: 36px !important;
}

.member-link:hover {
  letter-spacing: 0.03em;
  text-decoration: underline;
}
/* FOOTER */

.footer {
  background: var(--paper);
  text-align: center;
  padding: 60px 24px 80px;
}

.footer p {
  position: relative;
  display: inline-block;

  color: var(--gold);
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;

  padding-bottom: 22px;
}

.footer p::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;

  height: 2px;
  background: var(--blue);
  opacity: 0.35;
  border-radius: 2px;
}

/* MOBIL */

@media (max-width: 850px) {

  .hero-image {
    transform: none;
  }

  .hero-image {
    transform: none;
  }

  .hero-fade {
    height: 90px;
  }

  .hero-curve {
    bottom: -175px;
  }

  .claim {
    padding: 70px 20px 35px;
  }

.claim-main {
  font-size: 44px;
}

.claim-sub {
  font-size: 28px;
  margin-top: 10px;
  line-height: 1.3;
}

  .claim p {
    font-size: 20px;
  }

  .idea {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 30px 8% 65px;
  }

  .idea::before {
    display: none;
  }

  .idea-text {
    padding-left: 20px;
  }

  .idea-text h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .idea-text p {
    font-size: 19px;
  }

  .idea-statement {
    font-size: 44px;
  }

  /* THEMEN MOBIL */

  .topics {
    padding: 35px 6px 70px;
  }

  .topics h2,
  .members h2 {
    font-size: 36px;
    gap: 16px;
  }

  /* Auf dem Smartphone senkrechte Goldstriche */

.members h2::before,
.members h2::after {
  width: 2px;
  height: 72px;
  flex-shrink: 0;
}

  .topic-map {
    position: relative;
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    grid-template-areas:
      "t1 t2"
      "t8 t3"
      "logo logo"
      "t7 t4"
      "t6 t5";

    column-gap: 20px;
    row-gap: 0px;

    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
    align-items: center;
  }

  .center-logo {
    grid-area: logo;

    position: relative;
    left: auto;
    top: auto;
    transform: none;

    width: 235px;
    max-width: 78%;
    margin: -75px auto;
    z-index: 1;
  }

  .t1 {
    grid-area: t1;
  }

  .t2 {
    grid-area: t2;
  }

  .t3 {
    grid-area: t3;
  }

  .t4 {
    grid-area: t4;
  }

  .t5 {
    grid-area: t5;
  }

  .t6 {
    grid-area: t6;
  }

  .t7 {
    grid-area: t7;
  }

  .t8 {
    grid-area: t8;
  }

/* Themen mobil leicht versetzen */

.t1 {
  transform: translateX(-14px);
}

.t2 {
  transform: translateX(14px);
}

.t8 {
  transform: translateX(8px);
}

.t3 {
  transform: translateX(-8px);
}

.t7 {
  transform: translateX(-14px);
}

.t4 {
  transform: translateX(14px);
}

.t6 {
  transform: translateX(8px);
}

.t5 {
  transform: translateX(-8px);
}
  .topic,
.t1,
.t2,
.t3,
.t4,
.t5,
.t6,
.t7,
.t8 {
  position: static;
  left: auto;
  right: auto;
  top: auto;

  width: auto;
  white-space: normal;
  text-align: center;

  font-size: 16px;
  line-height: 1.35;
  z-index: 2;
}

.t1,
.t6,
.t7,
.t8 {
  justify-self: end;
}

.t2,
.t3,
.t4,
.t5 {
  justify-self: start;
}

.topics .topic-map {
  display: none;
}

/* Testbild Themenkreis mobil */

.topic-image-test {
  max-width: 430px;
  margin: 25px auto 0;
}

  /* MITGLIEDER MOBIL */

  .members {
    padding: 10px 20px 80px;
  }

  .member-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 30px;
  }

  .member-card {
    width: 100%;
    margin: 0 auto;
  }

  /* FOOTER MOBIL */

  .footer {
    padding: 80px 20px 70px;
  }

  .footer p {
    font-size: 36px;
  }
}/* Zusätzlichen Hero-Schriftzug sicher ausblenden */

.hero::after {
  content: none !important;
  display: none !important;
}