@import url('styles.css');
/* =========================
   TYPOGRAPHY MATCHING MAIN SITE
========================= */

/* Headings */
.gallery-hero-content h1,
.gallery-hero-content h2,
.gallery-hero-content h3 {
  font-family: "Playfair Display", serif;
  color: #2E241E;
  letter-spacing: 0.4px;
}

/* Body text */
.gallery-hero-content p,
.gallery-grid p,
.lightbox p {
  font-family: "Inter", sans-serif;
  color: #3A2F28;
}

/* Links */
.gallery-grid a,
.lightbox a {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #6A5848;
}

/* =========================
   GALLERY HERO
========================= */
.gallery-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero-overlay {
  background: rgba(58, 47, 40, 0.45);
  position: absolute;
  inset: 0;
}

.gallery-hero-content {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
}

/* =========================
   GALLERY GRID
========================= */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid img,
.gallery-grid video.gallery-video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid #E6DCCF;
  background: #F8F1E7;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: block;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 47, 40, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


@media (max-width: 768px) {
  .fade {
    opacity: 1 !important;
    transform: none !important;
  }
}







