@import url("assets/fonts.css");

:root {
  --navy: #022338;
  --yellow: #FFC71F;
  --magenta: #B3258E;
  --orange: #E5603C;
  --dark: #070A0C;
}

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

html {
  background: url("assets/bg-1.svg") no-repeat top left fixed;
  background-size: cover;
  background-color: #E5603C;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 50px;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 90px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 span {
  background: var(--navy);
  padding: 2px 14px;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero .subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 1.15;
  color: #fff;
  margin-top: 26px;
  max-width: 900px;
  text-transform: none;
}

.hero .subtitle .hl { color: var(--yellow); }

/* ---------- Card ---------- */
.card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  padding: 55px 60px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: center;
}

.card__cover img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border-radius: 2px;
}

.card__content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 28px;
}

.card__content h2 .hr { color: var(--magenta); }

/* ---------- Form ---------- */
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 7px;
  color: var(--dark);
}

.field label .req { color: var(--orange); }

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  padding: 15px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  border: 1px solid #d9dde0;
  border-radius: 4px;
  background: #f6f7f8;
  transition: border-color .15s ease, background .15s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.consent {
  margin: 22px 0 8px;
}

.consent p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #555b60;
}

.consent p + p { margin-top: 10px; }

.consent a { color: var(--magenta); }

.btn {
  display: inline-block;
  width: 100%;
  margin-top: 22px;
  padding: 20px 24px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}

.btn:hover { background: #cf5233; }
.btn:active { transform: translateY(1px); }

/* ---------- Description ---------- */
.description {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  margin-top: 40px;
  padding: 50px 60px;
}

.description p {
  font-size: 17px;
  color: #2b3033;
  margin-bottom: 18px;
}

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

/* ---------- Legal / content pages (Impressum, Datenschutz) ---------- */
.page {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  padding: 55px 60px;
}

.legal h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--dark);
  margin: 32px 0 12px;
}

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

.legal p {
  font-size: 16px;
  color: #2b3033;
  margin-bottom: 14px;
}

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

.legal a { color: var(--magenta); }

.legal address {
  font-style: normal;
  font-size: 16px;
  color: #2b3033;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 45px 0 55px;
  text-align: center;
  color: #fff;
}

.footer .copyright {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 12px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 45px 0 35px; }
  .hero h1 { font-size: 58px; }
  .hero .subtitle { font-size: 38px; }
  .card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px 28px;
  }
  .card__cover { max-width: 360px; margin: 0 auto; }
  .card__content h2 { font-size: 25px; }
  .description { padding: 35px 28px; }
  .description p { font-size: 16px; }
  .page { padding: 35px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .hero .subtitle { font-size: 30px; }
}
