
.gallery {
  padding: 2rem 1rem;
  text-align: center;
background-color: #2B1B12;
}

.gallery h1 {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.gallery-section {
  margin-bottom: 3rem;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: lighter;
  font-family: 'Parisienne', cursive;
  color: #ffffff;
}

.gallery-grid {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 1rem;
}

.gallery-grid img {
    background-color: #ffffff;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
    cursor: pointer;
  transform: scale(1.05);
}

.glow-text {
  color: var(--secondary-color); 
  text-shadow: 0 0 5px #f49bcc,
               0 0 10px #f49bcc,
               0 0 20px #f49bcc,
               0 0 40px #2B1B12,
               0 0 80px #2B1B12;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #f49bcc,
                 0 0 10px #f49bcc,
                 0 0 20px #f49bcc,
                 0 0 40px #2B1B12,
                 0 0 80px #2B1B12;
  }
  to {
    text-shadow: 0 0 10px #f49bcc,
                 0 0 20px #f49bcc,
                 0 0 30px #f49bcc,
                 0 0 60px #2B1B12,
                 0 0 100px #2B1B12;
  }
}


.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}


.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}


#caption {
  text-align: center;
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 10px;
  font-style: italic;
}


.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #bbb;
}


@media (min-width: 600px) {
.gallery-grid img {
  width: 90%; 

}
.gallery h1 {
  font-size: 3rem;
}
.gallery-section h2 {
  font-size: 3rem;
}

.gallery-grid {
  gap: 1rem;
margin-left: 5%;
}

}



@media (min-width: 1024px) {
.gallery-grid img {
  width: 70%;
}
.gallery-grid {
  gap: -5rem;
margin-left: 14%;
}
}