

/*------------------------------------------------------------------
  	[Footer]
------------------------------------------------------------------*/
#footer{
  scroll-margin: 20px;
}

@media (min-width: 992px) {
    .footer .container-fluid {
      margin-left: 0% !important;
    }
    #footer .row .col-sm-6:nth-of-type(1) {
      padding-right: 8rem;
    }
  }

  
  
  @media (max-width: 991px) {
    #footer .row .col-sm-6:nth-of-type(1) {
      padding-right: 0rem;
    }
  }
  
  .footer {
    background: url(../assets/Kontaktabzüge/lake-starnberg-7614034.jpg) center center no-repeat;
    background-size: cover;
  }
  
  @media (min-width: 992px) {
    .footer{
      height: 100vh !important;
      overflow: hidden;
    }
    
  }

  .gradient-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}
.gradient-footer {
  position: relative;
  overflow: hidden; /* Verhindert, dass der Schatten überlappt */
}


  .d-block{
    padding-bottom: 5px;
  }
  
  
  .footer .footer-list {
    margin-bottom: 0;
  }
  
  .footer .footer-list-item {
    color: #cbd3e1;
    margin-bottom: 25px;
  }
  
  .footer .footer-list-link {
    color: #cbd3e1;
  }
  
  .footer .footer-list-link:hover {
    color: #fff;
  }
  
  .footer .footer-input {
    background: rgba(0,0,0,.15);
  }
  
  .footer .footer-logo {
    width: 85px;
    height: auto;
  }
  
  .section-title {
    font-weight: 400;
    color: #fff;
  }
  .planning-section .section-title{
    margin-bottom: 0.5rem;
    margin-left: -0.5rem !important;
  }
  
  /* footer.css */
  
  /* 1) Einheitliche Abstände für alle Footer-Überschriften */
  .footer h2.abnes {
    margin-bottom: 6rem;
    margin-left: -0.5rem !important;
  }

    .mobile-break {
    display: none;
  }

  @media (max-width: 486px) {
    .mobile-break {
      display: inline;
    }
  }


  
  @media (min-width: 600px) {
    .footer h2.abnes {
      white-space: nowrap;
    }
    
  }
  
  /* 2) Spezifischer Abstand für die Planungs-Sektion */
  .footer .planning-section {
    margin-top: 4rem;
  }
  @media (max-width: 486px) {
      .footer .planning-section {
    margin-top: 6rem;
  }
  }
  
  /* 3) Wenn du für die rechte Spalte einen größeren Abstand brauchst */
  @media (min-width: 768px) {
    .footer .kontakt-section {
      margin-top: 10rem;
    }
  }
  
  /* 4) Textarea-Farbe statt Inline-style */
  .footer textarea {
    color: #fff;
  }
  
  /* 5) Button-Hintergrund */
  .footer .btn-base-bg {
    background-color: #906c4c;
  }
  
/* Nur Inputs bekommen den rechten Abstand */
.footer-input:not(textarea) {
  margin-right: 10rem !important;
}

.footer-input:is(textarea){
  margin-right: 0rem !important;
}

/* Textarea bekommt vollen Platz */
textarea.footer-input {
  margin-right: 0 !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

  /* Nur die Textarea im Footer einschränken */
#footer textarea.footer-input {
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}
  
  /* Footer-Checkboxen im Stil der Footer-Inputs und Links */
  .footer .form-section label {
    display: block;
    margin-bottom: 0.5rem;
    align-items: center;
    margin-right: 1rem;
    color: #cbd3e1;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* 1) Alle Labels untereinander (Display block) */
  .footer .form-section > label,
  .footer .form-section > .checkbox-with-text > label {
    display: block;
    margin-top: 0.75rem;
  }
  
  /* 2) */
  .footer .checkbox-with-text > label {
    display: inline-flex;
    align-items: center;
  }
  
  /* 3) */
  .footer .planning-section .checkbox-with-text > label,
  .footer .kontakt-section .checkbox-with-text > label {
    display: inline-flex;
    align-items: center;
  }
  
  
  /* Basis-Checkbox (wie gehabt) */
  .footer .form-section input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.15);
    position: relative;
    transition: background-color .2s, border-color .2s;
  }
  
  /* Checked-Zustand: farbig hinterlegen */
  .footer .form-section input[type="checkbox"]:checked {
    background: #906c4c;
    border-color: #906c4c;
  }
  
  /* Häkchen mit ::before zeichnen */
  .footer .form-section input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 7px;
  }
  
  
  /* Beim Hover einen leichten Hell-Effekt */
  .footer .form-section input[type="checkbox"]:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .footer .form-section input[type="checkbox"],
  .footer .form-section input[type="checkbox"]:checked {
    border-width: 1px !important;
    border-style: solid;
  }
  
  /* Entfernt den Focus-Outline und Box-Shadow */
  .footer .form-section input[type="checkbox"]:focus,
  .footer .form-section input[type="checkbox"]:active {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Bei Webkit-Browsern den inneren Focus-Rand löschen */
  .footer .form-section input[type="checkbox"]::-webkit-focus-inner {
    border: 0;
    padding: 0;
  }
  
  /* Abschnitt 2: Textfelder immer mittig neben der Checkbox */
  .footer .checkbox-with-text {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .footer .checkbox-with-text .form-control {
    margin-left: 1rem;
    flex: 1;
    color: #fff;
  }
  
  
  /* Placeholder nach Klick/Fokus weiß färben */
  .footer-input:focus::placeholder {
    color: #b9b9b9 !important;
  }
  
  /* Vendor-Prefixes für maximale Browser-Unterstützung */
  .footer-input:focus::-webkit-input-placeholder {
    color: #b9b9b9 !important;
  }
  .footer-input:focus:-ms-input-placeholder {
    color: #b9b9b9 !important;
  }
  .footer-input:focus::-ms-input-placeholder {
    color: #b9b9b9 !important;
  }
  
  
  /* Labelzeile nicht umbrechen und kein zusätzliches Margin */
  .footer .checkbox-with-text label {
    margin-bottom: 1rem;
    white-space: nowrap;
  }
  
  /* Checkbox-Beschreibung justieren */
  .footer .checkbox-desc {
    margin-left: 1rem !important;
  }
  
  input[type="checkbox"] {
    vertical-align: middle !important;
    transform: translateY(-3px);
  }
  
  
  
  /* Abschnitt 2 (Planung) – Label und Input immer auf gleicher Höhe*/
  
     .footer .planning-section .checkbox-with-text {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .footer .planning-section .checkbox-with-text > label {
      flex: 0 0 110px;
      margin-bottom: 0;
      white-space: nowrap;
    }
    
    /* Input füllt den Rest und startet immer an derselben Position */
    .footer .planning-section .checkbox-with-text > input.form-control {
      flex: 1;                 /* dehnt sich auf verbleibende Breite aus */
      margin-left: 1rem;       /* Abstand zwischen Label und Input */
    }
    
  
  
  
  
  /* Section 3: feste Spalten für Label und Input */
  .footer .kontakt-section .checkbox-with-text {
    display: flex;
    align-items: center;    /* vertikale Mitte */
  }
  
  
  
  /* Label bekommt fixe Breite – so startet das Input immer an derselben Stelle */
  .footer .kontakt-section .checkbox-with-text > label {
    flex: 0 0 90px;        /* passt du je nach Bedarf an */
    margin-bottom: 0;
    white-space: nowrap;
  }
  
  /* Input füllt den Rest und wird immer gleich breit */
  .footer .kontakt-section .checkbox-with-text > input[type="text"] {
    flex: 1;               /* füllt verbleibenden Platz */
    margin-left: 1rem;     /* Abstand zum Label */
  }
  