/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
  background-color: black;
}

/* hero background image */
.bgimage {
  height: 100vh;
  background: url("images/lake.jpg");
  background-size: cover;
  position: relative;
}

/* text css above hero image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  width: 90%;
  max-width: 700px;
}

/* Background behind text */
#hero_back {
  background-color: rgba(0, 255, 147, 0.6);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(3px);
}

/* Main title text */
.hero_title {
  font-size: 4rem;
  font-weight: bold;
}

/* Description */
.hero_desc {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Responsive scalling for smaller screens */
@media (max-width: 992px) {
  .hero_title {
    font-size: 3rem;
  }
  .hero_desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero_title {
    font-size: 2rem;
  }
  .hero_desc {
    font-size: 1rem;
  }
  #hero_back {
    padding: 1rem;
  }
}

/* about section image css */
.imageAboutPage {
  width: 100%;
  border-radius: 25px;
}

/* services section css */
.servicesText.card {
  height: 280px;
  cursor: pointer;
}
.servicesIcon {
  font-size: 36px;
  text-align: center;
  width: 100%;
}
.card-title {
  text-align: center;
}
.card:hover .servicesIcon {
  color: #008000;
}
.servicesText:hover {
  border: 1px solid #008000;
}

/* social media icons styling */
.social-icons {
  font-size: 36px;
  cursor: pointer;
}
.fa-facebook:hover,
.fa-instagram:hover,
.fa-twitter:hover,
.fa-linkedin:hover,
.fa-twitch:hover {
  color: #008000;
}
.fab {
  color: #000000;
}

#footer {
  background-color: #808080;
  text-align: center;
}

/* responsive google maps CGP */
.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#contact h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#contact a {
  color: #008000;
  font-weight: bold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* .navbar-nav .nav-item {
  margin: 0;
  padding: 0;
} */

/* Dodaj to na końcu pliku style.css */

.navbar-nav .nav-item {
  margin: 0 0.5rem; /* Ustawia margines po lewej i prawej stronie każdego elementu */
}

.navbar-nav .nav-item:last-child {
  margin-right: 0; /* Usuwa margines po prawej stronie ostatniego elementu */
}
