/* contact.css: zusätzliche Styles für Kontaktformular und Icons */

/* Formular-Layout */
.contact-form-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

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

.contact-form button.btn {
  background-color: #e7302a;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button.btn:hover {
  background-color: #cc2a25;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #0eaa8b;
  color: #fff;
  border-radius: 8px;
  display: none; /* Kann per JS aktiviert werden */
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
}

.social-icons .icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-icons .icon:hover {
  transform: scale(1.1);
}

/* Karte Styling */
.map-section iframe {
  border: 0;
  border-radius: 12px;
  width: 100%;
  height: 300px;
}

.map-section .btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #0087cc;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
}

.map-section .btn:hover {
  background-color: #0074b0;
}

/* Quick info Bereich */
.quick-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.quick-info p,
.quick-info a {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.25rem;
  display: block;
}

.quick-info a.btn {
  margin-top: 0.75rem;
  background-color: #0eaa8b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.quick-info a.btn:hover {
  background-color: #0a9579;
}

/* Honeypot unsichtbar machen */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;    /* zusätzlich */
  pointer-events: none !important;
}



