/* ══════════════════════════════════════════════════════════
   WebLab.tech — Kontaktformular Styles (Dark Theme)
   contact-form.css
══════════════════════════════════════════════════════════ */

/* ── Kontakt-Section Wrapper ─────────────────────────────── */
#contact {
  background: #131110;
  padding: 80px 16px;
}

/* ── Überschriften-Bereich ───────────────────────────────── */
.contact-eyebrow {
  color: #6b8eff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
}

.contact-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #FAFAF9;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-subtitle {
  font-family: 'Lato', sans-serif;
  color: #A8A29E;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── Haupt-Grid ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Formular-Felder ─────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-fields-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #A8A29E;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #292524;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #FAFAF9;
  background: #1C1917;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

#contact option {
  color: #FAFAF9;
  background: #1C1917;
}

input::placeholder,
textarea::placeholder {
  color: #57534e;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0231ff;
  box-shadow: 0 0 0 3px rgba(2, 49, 255, 0.20);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── Checkbox ────────────────────────────────────────────── */
.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #0231ff;
  cursor: pointer;
  border-radius: 4px;
  appearance: auto;
  -webkit-appearance: auto;
}

.checkbox-group label {
  font-weight: 400;
  color: #A8A29E;
  font-size: 0.8rem;
  line-height: 1.55;
  cursor: pointer;
}

/* ── Submit-Button ───────────────────────────────────────── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #0231ff, #e91e8c);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 49, 255, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Info-Karten ─────────────────────────────────────────── */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-contact-info {
  background: linear-gradient(135deg, #0231ff 0%, #7c3aed 50%, #e91e8c 100%);
  color: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(2, 49, 255, 0.25);
}

.card-contact-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text p {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2px;
}

.contact-info-text span {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.card-opening-hours {
  background: #1C1917;
  border: 1px solid #292524;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.card-opening-hours h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FAFAF9;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #A8A29E;
  padding: 8px 0;
  border-bottom: 1px solid rgba(41, 37, 36, 0.8);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: #6b8eff;
}

.hours-row .closed {
  color: #57534e;
  font-style: italic;
}

.hours-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: #78716c;
  line-height: 1.5;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #292524;
}
