/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/open-sans-v40-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/open-sans-v40-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/open-sans-v40-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: linear-gradient(35deg, #e2dcdc, #ffffff);
  background-repeat: no-repeat;
  background-attachment: fixed; /* Hintergrund bleibt fixiert beim Scrollen */
  background-size: 100% 100%; /* Deckt den gesamten Hintergrund */
  font-family: "Open Sans", sans-serif;
  min-height: 100vh; /* Stellt sicher, dass der Hintergrund mindestens die Höhe des Viewports hat */
}

h1 {
  border-bottom: #d6d6d6 5px dotted;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#wrapper {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100%;
}

#content {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#content a {
  text-shadow: none;
  color: rgb(86, 86, 86);
  text-decoration: underline;
}

#content a:hover {
  color: rgb(181, 181, 181);
}

.unternehmen {
  flex: 0 1 48%; /* Beide Firmen nehmen bei genügend Platz ca. 50% der Breite ein */
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .unternehmen {
      flex: 0 1 100%; /* Bei kleineren Bildschirmen nimmt jede Firma 100% der Breite ein */
  }
}

.divider {
  border-bottom: #d6d6d6 5px dotted;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  overflow: hidden;
  /* Füge dies hinzu, um sicherzustellen, dass nichts herausragt */
}

svg {
  width: 100%;
  height: auto;
  /* Passt die Höhe proportional zur Breite an */
  display: block;
  /* Entfernt unerwünschte Leerzeichen unter dem SVG */
}

a {
  text-shadow: 1px 1px 10px black;
}

#footer a {
  text-shadow: none;
  color: rgb(86, 86, 86);
  text-decoration: none;
}

#footer a:hover {
  color: rgb(181, 181, 181);
}

path {
  transition: fill 0.4s ease;
}

.district-cinesave {
  fill: #85bc21;
}

.district-cinesave:hover {
  fill: #628b18;
  cursor: pointer;
}

.district-cinesave-hovered {
  fill: #628b18;
}

.district-movieguard {
  fill: #e30613;
}

.district-movieguard:hover {
  fill: #a1050f;
  cursor: pointer;
}

.district-movieguard-hovered {
  fill: #a1050f;
}

#logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin: 50px 15px;
}

#logoMovieguard {
  width: 100%;
  max-width: 412px;
}

#logoCinesave {
  width: 100%;
  max-width: 380px;
}

#einleitungstext {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  border-top: #d6d6d6 5px dotted;
  border-bottom: #d6d6d6 5px dotted;
  /* border-radius: 10px; */
  padding: 25px 15px;
}

#footer {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  border-top: 5px dotted #d6d6d6;
  padding: 25px 15px;
}
