/* ===== Kontakt Section ===== */

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px;
}

.text {
  max-width: 700px;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

/* Überschrift */
.text h1 {
  margin: 0 0 32px 0;
  font-size: 2.5rem;
}

/* Kontakt Infos */
.text p {
  font-size: 1.1rem;
  margin: 12px 0;
}

/* einzelne Kontaktzeilen schöner */
.text p strong {
  color: chocolate;
}

/* Links (Email, Insta klickbar machen!) */
.text a {
  color: chocolate;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.text a:hover {
  opacity: 0.7;
}

/* ===== Kontakt Box (optional für mehr Premium Look) ===== */

.text {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Map Placeholder ===== */

.map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.9rem;
}

/* ===== Google Maps ===== */

/* Wrapper sorgt für gleiche Breite wie Kontakt-Box */
.map-wrapper {
  display: flex;
  justify-content: center;
  max-width: 780px;
  width: 100%;
  padding: 0 16px; /* Abstand zu den Seiten */
  margin-bottom: 32px;
}

.map-container {
  max-width: 780px; /* gleiche Max-Width wie Kontakt-Box */
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* ===== Mobile ===== */

@media (max-width: 768px) {
  main {
    padding: 40px 16px;
  }

  .text {
    padding: 24px;
  }

  .text h1 {
    font-size: 2rem;
  }
}
