#gallery {
    position: relative;
    background-color: rgba(208, 195, 186, 0.7);
    margin: -5rem 2rem 2rem 2rem;
    padding: 0.5rem;
    border-radius: 10rem 10rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    color: var(--blue);
}

#gallery h1 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    word-spacing: 0.5rem;
    line-height: 3rem;
    margin: 2rem 0;
}

#gallery p {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.row {
    display: flex;
    overflow-x: hidden;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.row img { 
    object-fit: cover;
}

#gallery img {
    max-height: 800px;
    cursor: pointer;
}

#gallery .last-image {
  border-radius: 0 0 9.5rem 9.5rem;
}

.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }
.w-60 { width: 60%; }

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: default;
  padding: 0;
}

#lightboxModal .modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

#lightboxModal .close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}