
  body {
    font-family: 'Quicksand', sans-serif;
  }
  
  .gallery {
    margin-top: 120px;
    padding: 50px;
    text-align: center;
  }
  
  .gallery h1 {
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 36px;
    color: #969595;
  }

  .gallery h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #969595;
    text-align: left;
    padding-left: 40px;
    padding-top: 60px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    padding: 0;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 5px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }
  

  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 26, 13, 0.925);
  }
  
.lightbox-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
}

.lightbox-content {
  max-width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.lightbox-caption {
  color: white;
  margin-top: 15px;
  font-size: 16px;
}
  
  .close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 43%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transition: background-color 0.3s ease;
    user-select: none;
  }
  
  .lightbox-prev {
    left: 2px;
  }
  
  .lightbox-next {
    right: 2px;
  }
  
  .lightbox-prev:hover, .lightbox-next:hover, .close:hover {
    color: green;
  }
  
  @media (max-width: 768px) {
  .gallery {
    padding: 20px;
  }

  .gallery h1 {
    font-size: 28px;
  }

  .close {
    top: 20px;
    right: 20px;
    font-size: 30px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .gallery h1 {
    font-size: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}