:root {
      --dark-gray: #2E2E2E;
      --sage: #A8BDB0;
      --beige: #F5F1E6;
      --black: #1C1C1C;
      --light-gray: #CCCCCC;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

h1,h2,h3,h4 {
    font-family: 'Poppins', sans-serif;
}
p, li, a, button {
    font-family: 'Montserrat', sans-serif
}
li {
    list-style: none;
}
/* -------------------------------------- */
.kontakt-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.kontakt-container {
  max-width: 1000px;
  width: 100%;
}

.kontakt-container h1 {
  font-size: 2.8rem;
  text-align: center;
  color: var(--sage);
  position: relative;
  margin-bottom: 3rem;
  margin-top: 8.8rem
}
.kontakt-container h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--sage);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.kontakt-container p {
  line-height: 30px;
}

.kontakt-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.kontakt-block {
  flex: 1 1 280px;
  background: white;
  border-left: 4px solid var(--sage);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--sage);
}

.kontakt-block p, .kontakt-block a {
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
}

.kontakt-block a:hover {
  text-decoration: underline;
}
.kontakt-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(10%) brightness(95%) contrast(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Responsive */
@media (max-width: 768px) {
  .kontakt-section {
    padding: 2rem 1rem;
  }

  .kontakt-container h1 {
    font-size: 2rem;
    margin-top: 3rem

  }

  .kontakt-block {
    padding: 1rem;
  }

  .kontakt-map iframe {
    height: 300px;
  }
}