.gallery-body{
  background: #e8d2c5;
}

.flyer{
  padding-top: 10px;
  padding-bottom: 10px;
}

.flyer-title{
  padding: 12px 0 10px 0;
}

.title-line{
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.script-title{
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-style: normal;
  color: rgba(53,51,51,0.92);
  letter-spacing: 0.5px;
}

.title-line::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.gallery-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.12);

  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-grid img:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 1000px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .gallery-grid{ grid-template-columns: 1fr; }
}

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.lightbox-img{
  max-width: 92%;
  max-height: 92%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.18);
}

.lightbox-close{
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  font-weight: 300;
  background: transparent;
  border: none;
}

.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  font-size: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev{ left: 18px; }
.lightbox-next{ right: 18px; }

.lightbox-nav:hover{
  background: rgba(0,0,0,0.65);
}

@media (max-width: 600px){
  .lightbox-prev{ left: 10px; }
  .lightbox-next{ right: 10px; }
}
