/* ================================
   STYLES FÜR IMPRESSUM & KONTAKT
================================ */

/* Grundlayout */
.impressum-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.impressum-content h1,
.impressum-content h2 {
  text-transform: lowercase;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

.impressum-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* Kontaktformular */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 20px;
  background: #fdfcf7;
  border-radius: 10px;
}

.contact-form label {
  font-weight: bold;
  text-transform: lowercase;
  display: block;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.contact-form button.btn {
  align-self: flex-start;
  margin-top: 5px;
  padding: 8px 16px;
}

/* Hinweis, falls Formular nicht aktiv ist */
.form-notice {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}

/* Map-Bereich */
.map-container {
  margin-top: 20px;
  text-align: center;
}

.map-placeholder img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-placeholder .map-hint {
  margin: 12px 0;
  font-size: 0.9rem;
  color: #666;
}

/* ✅ Responsive Google Maps */
#gmap iframe {
  width: 100% !important;
  height: 400px;
  border: 0;
  border-radius: 8px;
  display: block;
  margin: 10px auto 0;
  box-shadow: 0 4px 16px rgba(196, 8, 8, 0.15);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  #gmap iframe {
    height: 300px;
  }

  .impressum-content {
    padding: 15px;
  }
}