/* Eingabecontainer */
.message-box.box-shadow.white-bg {
  background: #fff;
  border: 1px solid black;
  padding: 2rem;
  box-shadow: 5px 5px 5px rgba(255, 241, 118, 0.482);
  margin-top: 10rem;
}

.message-box-section.mt--50.mb-80 .container textarea {
  border: 1px solid black;
}

/* Felder & Inputs */
.message-box-section.mt--50.mb-80 .container input[type="text"],
.message-box-section.mt--50.mb-80 .container select {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid black;
  outline: none !important;
  box-shadow: none !important;
  font-size: 1.3rem;
  font-family: 'Indie Flower', cursive;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.message-box-section.mt--50.mb-80 .container input[type="text"]:focus,
.message-box-section.mt--50.mb-80 .container select:focus {
  border-color: black;
  box-shadow: 5px 5px 5px rgba(255, 241, 118, 0.482) !important;
  outline: none;
}

.message-box-section.mt--50.mb-80 .container input[type="password"],
.message-box-section.mt--50.mb-80 .container select {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid black;
  outline: none !important;
  box-shadow: none !important;
  font-size: 1.3rem;
  font-family: 'Indie Flower', cursive;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.message-box-section.mt--50.mb-80 .container input[type="password"]:focus,
.message-box-section.mt--50.mb-80 .container select:focus {
  border-color: var(--highlight-yellow);
  box-shadow: 5px 5px 5px rgba(255, 241, 118, 0.482) !important;
  outline: none;
}

/* Spaltenanpassung */
.message-box-section.mt--50.mb-80 .container .col-sm-6 {
  width: 100%;
  max-width: 48%;
  display: inline-block;
  vertical-align: top;
}

.message-box-section.mt--50.mb-80 .container .col-sm-12 {
  margin-top: 2rem;
}

/* Checkbox-Bereiche */
.message-box-section.mt--50.mb-80 .container p {
  font-size: 1.4rem !important;
  margin-bottom: 1rem;
}

.message-box-section.mt--50.mb-80 .container input[type="checkbox"] {
  margin-right: 0.5rem;
}

.border-left.mb-30::before {
  background-color: rgb(255, 241, 118);
}


#mitteilung.custom-textarea:focus {
    border-color: black;
    box-shadow: 5px 5px 5px rgba(255, 241, 118, 0.482) !important;
}












.address-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Indie Flower', cursive;
  color: var(--text-color);
}

.row.row-eq-height {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
}

.contact-address {
  background: #fff;
  border: 1px solid black;
  padding: 2rem;
  text-align: center;
  box-shadow: 5px 5px 10px rgba(255, 241, 118, 0.4);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-address:hover {
  box-shadow: 12px 12px 15px rgba(255, 241, 118, 0.6);
}

.contact-address i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-address:hover i {
  background-color: black;
}

.contact-address h6 {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  font-weight: bold;
  word-break: break-word;
}

/* Dekoband oben wie Tape */
.contact-address::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 60px;
  height: 20px;
  background: var(--highlight-yellow, #fff176);
  clip-path: polygon(
    0% 0%, 10% 30%, 0% 60%, 15% 100%,
    85% 100%, 100% 60%, 90% 30%, 100% 0%
  );
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .row.row-eq-height {
    flex-direction: column;
    align-items: center;
  }

  .contact-address {
    width: 100%;
  }
}







.submit-btn-1.mt-30.btn-hover-1 {
  background-color: transparent !important;
  border: solid 1px black !important;
  color: black !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.submit-btn-1.mt-30.btn-hover-1:hover {
  background-color: black !important;
  color: white !important;
}

.submit-btn-1.mt-30.btn-hover-1:hover::before {
  display: none;
}

.google-map-section .container-fluid {
  display: none;
}