/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
  position: relative;
  height: 100%;
  font-family: "Poppins";
}
@media screen and (min-width: 992px) {
    .bootstrap4_header .navbar .nav-item {
        padding: 0px 2px;
        margin: 0 .25rem;
    }
}
body {
  font-family: "Poppins";
  position: relative;
  height: 100%;
}
.text-sm.font-normal.text-lightText {
    font-size: 14px;
}
#about,
#portfolio,
#contact {
  scroll-margin-top: 70px;
}
.portfolio-item {
  display: none;
}

.swiper {
  padding: 0.5rem 0 3rem 0;
  width: 100%;
}
@media (max-width: 576px) {
  .swiper {
    margin-top: -1.5rem; /* adjust as needed */
  }
}
.normal-section {
  padding: 0.5rem 0 3rem 0;
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-star {
  width: 33px;
  height: 31px;
  cursor: pointer;
}
.custom-star path {
  fill: #adb3bc;
  transition: fill 0.2s ease-in-out;
}
.custom-star.active path {
  fill: #ffc107;
}
.fade {
  /* background: rgba(0, 0, 0, 0.8); */
}

.absolute {
  position: absolute;
}
.ad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent black overlay */
  z-index: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-text {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: white;
}
.ad-root img {
  position: relative;
  z-index: 0;
}
.weather-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .weather-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .weather-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.weather-card {
  gap: 15px;
  display: flex;
  align-items: flex-start;
}
.leaflet-bottom {
  display: none;
}
#map {
  height: 260px;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  #map {
    height: 329px;
  }
}

@media (min-width: 1024px) {
  #map {
    height: 429px;
  }
}

.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: none;
}
