/* ==== GALLERY SECTION ==== */
.heading {
  padding: 60px;
}
.heading h1 {
  text-align: center;
  color: #57886C;
  font-size: 4rem;
  margin-bottom: 20px;
}

.heading h2 {
  text-align: center;
  color: #466060;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#gallery {
  padding: 50px 20px;
  background-color: #e0e0e0;
}

/* Grid layout */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Individual gallery card */
.gallery-item {
  width: 280px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Image styling */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Caption */
.gallery-item figcaption {
  padding: 12px 0;
  font-size: 1rem;
  color: #555;
  background-color: #fff;
  border-top: 1px solid #eee;
}

/* ==== LIGHTBOX ==== */

.lightbox {
  display: block;
}

/* Modal container */
#lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox-modal.active {
  display: flex;
}

/* Modal image */
#lightbox-modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Close button */
#lightbox-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

#lightbox-modal .close:hover {
  color: #22a7a7;
}

.interest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
}
.interest h2 {
  color: #57886C;
  font-size: 2rem;
  margin-bottom: 10px;
}

.interest p {
  color: #466060;
  font-size: 1rem;
  margin-bottom: 5px;
}

.interest button {
    font-size: 1rem;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #57886C;
    color: #fafafa;
    margin: 10px 0 20px;
    
}

.interest button:hover {
  background-color: #f8c7cc;
  translate: 0 -5px;
}