.projects {
    background-color: #020202;
    color: #fff;
    padding: 0 20px;
    text-align: center;
}

.projects .container{
    max-width: 1200px;
    margin: 0 auto;
}

.realizacje__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.projects__grid {
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.project:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Lightbox view */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


@media (max-width: 768px){
  .projects__grid {
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
  }

  .projects {
    padding: 0 10px;
  }
}