﻿/* Page: Kontakt
   Loaded after site.css. Keep only styles used by this page here. */

/* Kontaktseite: Hero verfeinern */
.contact-hero .hero-content {
  align-items: center;
  gap: 3rem;
}

.contact-hero .hero-text {
  max-width: 720px;
}

.contact-hero .lead {
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-hero .hero-media {
  padding-top: 0.5rem;
}

.contact-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  border: 1px solid rgba(62, 166, 161, 0.16);
  background: #ffffff;
  padding: 0.35rem;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}

@media (max-width: 900px) {
  .contact-hero .hero-content {
    gap: 1.5rem;
  }

  .contact-hero .hero-media {
    padding-top: 0;
  }

  .contact-hero .hero-image {
    max-width: 360px;
  }
}

/* Kontaktseite: Anfragearten-Box */
.contact-suitable-section {
  margin: 1.5rem 0 1.8rem;
}

.contact-suitable-box {
  padding: 1.45rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.22);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.contact-suitable-box h2 {
  margin: 0 0 1.1rem;
  font-size: 1.18rem;
  line-height: 1.3;
  color: #123f46;
}

.contact-suitable-grid {
  gap: 1rem 2rem;
}

.contact-suitable-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-suitable-grid li {
  position: relative;
  margin: 0 0 0.65rem;
  padding-left: 1.65rem;
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-suitable-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;

  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;
  background: rgba(62, 166, 161, 0.13);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-suitable-grid a {
  color: var(--brand-dark);
  font-weight: 650;
  text-decoration: none;
}

.contact-suitable-grid a:hover,
.contact-suitable-grid a:focus {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Kontaktseite: Formular-Karte */
.contact-form-section {
  margin: 1.8rem 0 3rem;
}

.contact-form-card {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form .field label {
  margin-bottom: 0.35rem;
  color: #123f46;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.13);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.025);
}

.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .field select:focus {
  outline: none;
  border-color: rgba(62, 166, 161, 0.55);
  box-shadow: 0 0 0 3px rgba(62, 166, 161, 0.16);
}

.contact-form textarea {
  min-height: 170px;
}

.contact-alt {
  margin: 1rem 0 0;
  color: #5f6f80;
  font-size: 0.98rem;
}

.contact-alt a {
  color: var(--brand-dark);
  font-weight: 650;
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 1.2rem;
    border-radius: 18px;
  }
}
