<!-- start Simple Custom CSS and JS -->
<style type="text/css">
  <style> 
  
@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Montserrat:wght@500;700&family=Roboto&display=swap');

:root {
  --bg-dark: #163948;
  --nav-bg: #1E4B66;
  --text-color: #ACB99F;
  --heading-color: #C9BB8B;
  --section-bg: #1F4966;
  --accent-color: #C9BB8B;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-nav: 'Bitter', serif;
}


.gallery-page {
  padding: 2rem;
  background-color: var(--bg-dark);
  color: var(--text-color);
  font-family: var(--font-body);
}

.gallery-page__heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.Gallery-page_image_divider_text {
	
	text-align: center;
	font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

/* Wrap each image to control its size */
.gallery-page__thumb-wrapper {
  /* Make sure images scale nicely */
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-page__thumb-wrapper img.gallery-page__thumb {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer; /* indicates clickable */
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.gallery-page__thumb-wrapper img.gallery-page__thumb:hover {
  transform: scale(1.05);
}

/* Consistent image size + fill behavior */
.gallery-page__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-page__thumb:hover {
  transform: scale(1.02);
}

/* Lightbox Overlay */
.gallery-page__lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 57, 72, 0.95); /* var(--bg-dark), mostly opaque */
  justify-content: center;
  align-items: center;
}

.gallery-page__lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Navigation Buttons */
.gallery-page__nav {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: var(--accent-color);
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.gallery-page__nav--left {
  left: 2rem;
}

.gallery-page__nav--right {
  right: 2rem;
}

.gallery-page__close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  background: none;
  color: var(--accent-color);
  border: none;
  cursor: pointer;
}

.gallery-group {
  margin: 3rem 0; /* vertical spacing between groups */
  padding-top: 1rem;
  border-top: 2px solid var(--accent-teal, #637F7B); /* visible divider line */
}

.gallery-group__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--heading-color, #C9BB8B);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--accent-teal, #637F7B); /* optional double line if you want */
}

.gallery-group__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 1rem; /* space between images */
  margin-top: 1rem;
  margin-bottom: 2rem;
}

</style>
<!-- end Simple Custom CSS and JS -->
