/**
 * Modern Kontakt Card Styling
 * Überschreibt das bestehende Kontakt-Styling mit modernem Card-Design
 */

/* Kontakt Section Background */
.kontakt {
  background: #f9fafb !important;
  padding: 80px 0 !important;
}

/* Container */
.kontakt .container-3 {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.kontakt .section-head {
  text-align: center;
  margin-bottom: 48px;
}

.kontakt .section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: #fff3e0;
  color: #ff6b35;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.kontakt .section-title--underline {
  font-size: 40px;
  font-weight: 800;
  color: #1a202c;
  position: relative;
  padding-bottom: 16px;
}

.kontakt .section-title--underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 2px;
}

/* Grid Layout */
.kontakt .div-block-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Info Card (Links) */
.kontakt .div {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.kontakt .div-block-13 {
  display: flex;
  flex-direction: column;
}

/* Titel */
.kontakt .text-block {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a202c;
}

/* Divider (Orange Linie) */
.kontakt .div-block-6 {
  height: 3px;
  width: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 2px;
  margin: 24px 0;
}

/* Adresse */
.kontakt .text-block-2 {
  font-size: 18px;
  color: #64748b;
  margin: 0 0 32px;
}

/* Kontaktinfo Container */
.kontakt .div-block-7 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.kontakt .text-block-4,
.kontakt .text-block-5 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.kontakt .semibold {
  font-weight: 600;
  color: #1a202c;
  min-width: 90px;
}

.kontakt .contact-link {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.2s;
}

.kontakt .contact-link:hover {
  color: #f7931e;
}

/* Öffnungszeiten */
.kontakt .div-block-9 {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt .div-block-10 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.kontakt .div-block-10 div:first-child {
  font-weight: 600;
  color: #475569;
}

.kontakt .div-block-10 div:last-child {
  color: #64748b;
}

/* Route Button */
.kontakt .div-block-20 {
  margin: 0;
}

.kontakt .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  border: none;
}

.kontakt .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Map Card (Rechts) */
.kontakt .div-2 {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 500px;
}

.kontakt .w-embed {
  height: 100%;
}

.kontakt .map-card {
  height: 100%;
  min-height: 500px;
}

/* Responsive */
@media (max-width: 991px) {
  .kontakt .section-title--underline {
    font-size: 32px;
  }

  .kontakt .div-block-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kontakt .div-2 {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .kontakt .section-title--underline {
    font-size: 28px;
  }

  .kontakt .div {
    padding: 24px;
  }

  .kontakt .text-block {
    font-size: 24px;
  }
}
