/*.row {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  padding: 0 4px;*/
/*}*/

/* Create four equal columns that sits next to each other */
/*.column {*/
/*  flex: 31%;*/
/*  max-width: 31%;*/
/*  padding: 4px 6px;*/
/*}*/

/*.column img {*/
/*  margin-top: 8px;*/
/*  vertical-align: middle;*/
/*  width: 100%;*/
/*}*/

/* Responsive layout - makes a two column-layout instead of four columns */
/*@media screen and (max-width: 800px) {*/
/*  .column {*/
/*    flex: 50%;*/
/*    max-width: 50%;*/
/*  }*/
/*}*/

* {
  box-sizing: border-box;
}



/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
}

.gallery img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

    
    /* Modal overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
 
  justify-content: center;
  align-items: center;
  z-index: 9999;

}

.modal-img {
  max-width: 70vw;
  max-height: 70vh;
  border-radius: 8px;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
    
    
    
    

