@charset "UTF-8";
@font-face {
  font-family: "ponur";
  src: url("../../fonts/PPObjectSans-Heavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ponur2";
  src: url("../../fonts/Aceh-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.map-wrapper {
  text-align: center;
  padding: 2vw;
}
.map-wrapper .map-title {
  font-size: 2vw;
  font-family: "ponur";
  margin-bottom: 1vw;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.map-wrapper .map-title::before {
  content: "📌";
  font-size: 2.2vw;
}
.map-wrapper .map-text {
  font-family: "ponur";
  font-size: 1.8vw;
  color: #333;
}

.map-container {
  width: 60vw;
  max-width: 60vw;
  height: 35vw;
  margin: 2vw auto;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInMap 1s forwards 0.5s;
}
.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.3);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes fadeInMap {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 680px) {
  .map-wrapper {
    text-align: center;
    padding: 2vw;
  }
  .map-wrapper .map-title {
    font-size: 4vw;
    font-family: "ponur";
    margin-bottom: 1vw;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
  }
  .map-wrapper .map-title::before {
    content: "📌";
    margin-top: -1vw;
    font-size: 3.2vw;
  }
  .map-wrapper .map-text {
    font-family: "ponur";
    font-size: 3vw;
    color: #333;
  }
  .map-container {
    width: 70vw;
    max-width: 70vw;
    height: 45vw;
    margin: 2vw auto;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInMap 1s forwards 0.5s;
  }
  .map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.3);
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}

/*# sourceMappingURL=lokalizacja.css.map */
