/* ============================================================
   OG Hildesheimer Börde — Kontakt Page Styles
   ============================================================ */

.kontakt-hero {
  background: #0a0a0a;
  padding: 4rem 0 3rem;
  border-bottom: 1px dashed rgba(253, 37, 4, 0.2);
}

.kontakt-hero h1 { margin-bottom: 0.75rem; }
.kontakt-hero p { font-size: 1.05rem; color: #aaa; max-width: 580px; }

/* --- Main Two-Column Layout --- */
.kontakt-main {
  padding: 4rem 0;
  background: #0a0a0a;
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* --- Contact Form --- */
.form-section h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-section > p { color: #888; font-size: 0.9rem; margin-bottom: 2rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #111;
  border: 1px dashed rgba(253, 37, 4, 0.3);
  color: #f5f5f5;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #fd2504;
  border-style: solid;
}

.form-group select option { background: #111; color: #f5f5f5; }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #fd2504;
  border: 1px solid #444;
  background: #111;
  cursor: pointer;
}

.form-check a { color: #fd2504; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Info Column --- */
.info-section { display: flex; flex-direction: column; gap: 2rem; }

.info-section h2 { font-size: 1.4rem; margin-bottom: 1rem; }

/* Department Cards */
.dept-cards { display: flex; flex-direction: column; gap: 1rem; }

.dept-card {
  background: #111;
  border-left: 3px solid #fd2504;
  border-top: 1px dotted rgba(253, 37, 4, 0.2);
  border-right: 1px dotted rgba(255,255,255,0.05);
  border-bottom: 1px dotted rgba(255,255,255,0.05);
  padding: 1.25rem 1.5rem;
}

.dept-card__name {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fd2504;
  margin-bottom: 0.5rem;
}

.dept-card__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dept-card__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #aaa;
  margin: 0;
}

.dept-card__contact-list .icon { color: #fd2504; flex-shrink: 0; }

.dept-card__contact-list a { color: #aaa; }
.dept-card__contact-list a:hover { color: #fd2504; }

/* Address Block */
.address-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #111;
  padding: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.08);
}

.address-block .icon { color: #fd2504; flex-shrink: 0; margin-top: 2px; }
.address-block address { font-style: normal; color: #aaa; font-size: 0.9rem; line-height: 1.8; }

/* Hours Table */
.hours-section { margin-top: 0.5rem; }
.hours-section h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.5rem 0; font-size: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-table td:first-child { color: #666; width: 45%; }
.hours-table td:last-child { color: #ccc; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-closed { color: #444 !important; }

/* --- Map Section --- */
.map-section {
  background: #050505;
  padding: 0;
}

.map-section h2 {
  padding: 3rem 1.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.4rem;
}

.map-embed {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(80%) invert(85%) contrast(90%) hue-rotate(180deg);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .kontakt-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .map-embed { height: 300px; }
}
