/* kontakt.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
}
h2 {
  margin-top: 0px;
  font-family: 'Times New Roman', serif; 
}
h3 {
  margin-top: 30px;
}
.kontakt-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
	
input, select, textarea, button {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #1c1c1c;
  color: white;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Zusatz nur für Textfelder */
textarea {
  resize: none;
}


input::placeholder, textarea::placeholder {
  color: #888;
}

label.field-label {
  font-weight: 500;
  color: #eee;
  margin: 0.5rem 0;
  display: block;  
}
.geo-btn {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.6rem;
  font-size: 1rem;
  background: #E0E0E0;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.geo-btn:hover {
  background: #e0b000;
}

.map {
  width: 200%;
  max-width: 700px;
  margin-top: 0.6rem;
  margin-left: 0;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.input-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 30px;
}

.input-group {
  flex: 1;
  min-width: 250px;
}

.wide-group {
  position: relative;
  flex-basis: 100%;
}
.input-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 500;
  position: relative;  
}
.blitz-headline {
  max-width: 120px;
  height: auto;
  margin-top: 1.6rem;
}
a {
  color: #f5c518; /* goldener Farbton */
  text-decoration: none;
}

a:hover {
  color: #ffd700; /* helleres Gold beim Hover */
  text-decoration: underline;
}

select:invalid {
  color: #777;
}

button[type="submit"] {
  background-color: #FE9605; /* Gold */
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  color: #000;
}

button[type="submit"]:hover {
  background-color: #2B7617;
}

/* Gepäckliste Toggle */
.toggle-gepaeck {
  width: 100%;
  background: #FE9605;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1rem;
}

.toggle-gepaeck:hover {
  background: #F22F00;
}

.gepaeck-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.3s ease;
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 1rem;
}

.gepaeck-options.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.option-card:hover {
  background-color: #222;
  border-color: #4a90e2;
}

.option-card input[type="checkbox"] {
  display: none;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #888;
  position: relative;
}

.option-card input[type="checkbox"]:checked + .circle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #4a90e2;
  border-radius: 50%;
}

.option-card input[type="checkbox"]:checked + .circle {
  border-color: #4a90e2;
}

.label-text {
  color: #eee;
  font-size: 1rem;
}
.site-footer {
  text-align: center;
  color: #aaa;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid #333;
  background-color: transparent;
}

#feedback {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #4a90e2;
  font-weight: bold;
}
@media (max-width: 768px) {
  .map {
    width: 100%;
  }

  .input-row {
    flex-direction: column;
    gap: 1rem;
  }
  .input-group:last-of-type {
    margin-bottom: 1.5rem;
  }
  .wrapper {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .kontakt-container,
  .kontakt-formular-container {
    max-width: 90%;
  }
}
.checkbox-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: white;
}

.checkbox-label a {
  color: #00ffff;
  text-decoration: underline;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  cursor: pointer;
}


@media (max-width: 480px) {
  .toggle-gepaeck {
    font-size: 1rem;
    padding: 0.8rem;
  }
  .input-row {
    flex-direction: column;
    gap: 0; /* kein zusätzlicher Abstand zwischen den Gruppen */
  }

  .input-row .input-group {
    margin-bottom: 0.1rem; /* Standard-Abstand */
  }

  .input-row .input-group:last-child {
    margin-bottom: 0; /* kein doppelter Abstand nach Nachname */
  }
  .option-card {
    padding: 0.8rem;
  }
  .autocomplete-list li {
    font-size: 0.9rem;
    padding: 0.8rem;
  }  
}
