/* GALLERY PAGE */

.gallery-container {
  margin-top: 40px;
}


/* TITLE */

.gallery-title {
  text-align: center;
  color: var(--teal);
  margin-bottom: 50px;
}


/* CATEGORY SECTIONS */

.gallery-category {
  margin-bottom: 70px;
}

.gallery-category h2 {
  color: var(--teal);
  border-bottom: 2px solid var(--brown);
  padding-bottom: 10px;
  margin-bottom: 25px;
}


/* IMAGE GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* IMAGE CARDS */

.gallery-item {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--brown);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}


.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}


.gallery-item h3 {
  color: var(--teal);
  margin: 10px 0 0 0;
  text-align: center;
}


/* SEE MORE BUTTON */

.see-more {
  display: block;
  margin: 25px auto 0 auto;

  background: var(--brown);
  color: white;

  border: none;
  border-radius: 8px;

  padding: 12px 20px;

  font-family: 'Aladin', Arial, cursive;
  font-size: 24px;

  cursor: pointer;
}

.see-more:hover {
  background: var(--teal);
  color: var(--dark);
}


/* LIGHTBOX */

.lightbox {

  display: none;

  position: fixed;

  z-index: 999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.85);

  justify-content: center;
  align-items: center;

  padding: 20px;
}


.lightbox-content {

  background: var(--dark);

  border-left: 5px solid var(--brown);

  border-radius: 12px;

  padding: 25px;

  max-width: 800px;

  width: 90%;

  text-align: center;

}


.lightbox-content img {

  max-height: 70vh;

  width: auto;

  max-width: 100%;

  border-radius: 10px;

}


.lightbox-content h2 {

  color: var(--teal);

}


.lightbox-content p {

  font-size: 24px;

}



/* CLOSE BUTTON */

.close {

  position: absolute;

  top: 20px;
  right: 35px;

  color: white;

  font-size: 50px;

  cursor: pointer;
}


/* STATUS BUTTON */

.status-button {
  display: inline-block;
  background: var(--brown);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
}

.status-button:hover {
  background: var(--teal);
  color: var(--dark);
}


/* MOBILE */

@media (max-width: 768px) {

  .gallery-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

  }


  .gallery-title {

    margin-bottom: 30px;

  }


  .lightbox-content p {

    font-size: 18px;

  }

}
.about-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 10px 25px;
  border-bottom: 2px solid var(--brown);
}

.about-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.about-section > p {
  margin-bottom: 0;
}

.about-section details {
  margin-top: 15px;
}

.about-section summary {
  cursor: pointer;
  color: var(--teal);
  font-weight: bold;
  list-style: none;
}

.about-section summary::-webkit-details-marker {
  display: none;
}

.about-section summary:hover {
  text-decoration: underline;
}

.about-content {
  margin-top: 18px;
}

.about-content p:last-child {
  margin-bottom: 0;
}
/* LIGHTBOX IMAGE NAVIGATION */

.lightbox-image-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}


.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0, 0, 0, 0.6);
  color: white;

  border: none;
  border-radius: 50%;

  width: 50px;
  height: 50px;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  z-index: 1;
}


.lightbox-arrow-left {
  left: 10px;
}


.lightbox-arrow-right {
  right: 10px;
}


.lightbox-arrow:hover {
  background: var(--brown);
}

.category-description {
  font-size: 0.6em;
  color: white;
  font-weight: normal;
}

/* AVAILABILITY DOT */

.availability-dot {
  position: absolute;
  bottom: 18px;
  left: 10px;

  width: 12px;
  height: 12px;

  border-radius: 50%;
  border: 1px solid white;

  z-index: 2;
}

.availability-dot.available {
  background: green;
}

.availability-dot.unavailable {
  background: red;
}

.gallery-image-container {
  position: relative;
}

.availability-dot.contact {
  background: yellow;
}

/* GALLERY KEY */

.gallery-key {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;

  margin-top: -30px;
  margin-bottom: 40px;

  font-size: 20px;
}

.gallery-key span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.key-dot {
  width: 15px;
  height: 15px;

  border-radius: 50%;
  border: 1px solid white;

  display: inline-block;
}

.key-dot.available {
  background: green;
}

.key-dot.unavailable {
  background: red;
}

.key-dot.contact {
  background: yellow;
}
