@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
*{
     margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}
body{ 
    font-family: 'Segoe UI', sans-serif; 
    color: #191919;
}
.first{
    min-height: 80vh;
    
}
.first h4{
  padding: 20px 20px;
}
/* header{
  height: 80px; /* dowolna stała wartość 
} */
.first h2{
    font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 20px 20px;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.2;
     text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),    /* podstawowy cień */
        0 0 10px rgba(255, 255, 255, 0.2), /* lekka poświata */
        0 0 20px rgba(255, 255, 255, 0.5);   /* kolorowy efekt */
}
.first h4{
    font-size: 18px;
     text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),    /* podstawowy cień */
        0 0 10px rgba(255, 255, 255, 0.2), /* lekka poświata */
        0 0 20px rgba(255, 255, 255, 0.5);   /* kolorowy efekt */
}
.map iframe{
    width: 900px;
    height: 700px;
    box-shadow: 0 0 20px rgba(25, 25, 25,0.5);
    border-radius: 10px;
}
.map{
    top: 450mm;
    
}
.butt{
    background-color: #ff6600;
    transition: .3s ease-in-out;
    width: 150px;
    margin-left: 30px;
}
.butt:hover{
    transform: translate(0px, -15px);
}
@media(max-width:575px){
   
    .map iframe{
        width: 350px;
        height: 200px;
       
    }
 
}

@media(max-width:900px){
   
    .map iframe{
        width: 450px;
        height: 300px;
       
    }

}


@media(max-width: 390px){
   
    .map iframe{
        width: 250px;
        height: 140px;
       
    }
   
  }


    .main-image img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border: 4px solid #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .side-images {
      display: flex;
      justify-content: space-between;
      margin-top: -40px;
    }

    .side-images img {
      width: 80px;
      height: auto;
      opacity: 0.7;
      cursor: pointer;
      border: 2px solid #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: opacity 0.2s;
    }

    .side-images img:hover {
      opacity: 1;
    }


    
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
    }

    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 36px;
      color: white;
      cursor: pointer;
    }

    .lightbox .prev,
    .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 48px;
      color: white;
      cursor: pointer;
      padding: 10px;
      user-select: none;
    }

    .lightbox .prev { left: 20px; }
    .lightbox .next { right: 20px; }


 .products {
  background-color: #f4f4f4;
  text-align: center;
}
.products h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 600;
  padding: 20px;
    text-align: left;
  max-width: 1200px;
  margin: 0 auto 20px;
  padding-left: 10px; /* dopasuj do gapu jeśli trzeba */
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px; /* odstęp między kafelkami */
  max-width: 1200px;
  margin: 0 auto;
}


.service-tile {
width: 280px; /* STAŁA szerokość */
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-tile img {
  max-width: 80px;
  height: auto;
  margin: auto;
  margin-bottom: 15px;
}

.service-tile h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.service-tile p {
  font-size: 1rem;
  color: #666;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}
