:root {
  --bg: #F5F5F5;
  --text: #1839DD;
  --muted: #555;
  --max-width: 840px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  padding: 48px 24px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 120px 0 8px 0;
  text-align: center;
}

.subtitle {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 120px 0 56px 0;
  text-align: center;
}

.statement {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.0em;
  line-height: 1.2;
  white-space: pre-wrap;
  margin: 120px 0 8px 0;
}

.photographers {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  margin-bottom: 72px;
  text-align: center;
}

.photographers a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  color: var(--text);
}

.info {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 60px 0 20px 0;
}

.footer1 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 120px;
  margin-bottom: 0px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.footer2 {
  font-size: 20px;
  line-height: 1;
  margin-top: 0px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.header-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}

.mail-icon {
  position: fixed;   /* fixiert den Button auf dem Bildschirm */
  top: 80px;         /* Abstand vom oberen Rand */
  left: 80px;        /* Abstand vom linken Rand */
  width: 46px;       /* Breite des Icons */
  height: auto;
  z-index: 1000;     /* sicherstellen, dass es ?ber anderen Elementen liegt */
}

.mail-icon img {
  width: 500%;
  height: auto;
  display: block;
}


.title {
  margin: 0 0 8px 0 !important;
}

.big-button {
  display: block;
  width: 100%;
  margin: 80px 0;
}

.big-button img {
  width: 100%;
  height: auto;
  display: block;
}

.fullwidth-bar img {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}

/* Mobile Layout-Anpassungen (optional f?r Positionierung etc.) */
@media (max-width: 720px) {
  body {
    padding: 32px 18px;
  }
  .title {
    font-size: 36px;
  }
  .subtitle {
    font-size: 24px;
  }
  .statement {
    font-size: 18px;
  }
  .photographers a {
    font-size: 20px;
  }
  .footer1 {
    font-size: 20px;
  }
  .footer2 {
    font-size: 15px;
  }
  .mail-icon {
    display: none;
  }

}
