body.pagina-fotos {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: url('../imag/kk.jpg') no-repeat center center fixed !important;
  background-size: cover !important;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.gallery-container {
  flex: 1;
}

.overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}

.gallery-container {
  max-width: 700px;
  margin: 30px auto;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  border-radius: 10px;
  height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
  
}

.gallery-container::-webkit-scrollbar {
  width: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: #ff4081;
  border-radius: 4px;
}

.gallery-item {
  margin-bottom: 15px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 350px;
}


/* .gallery-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;  
  max-height: none;     
  background: black;    /
} */


.ad-placeholder {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-style: italic;
}

/* Imagen ampliada (modal) */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 20px black;
  object-fit: contain;
}

.image-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  z-index: 10000;
}




