/* Optimized Font Pairing: Mulish (Exact Logo Look) + Inter (Clean UI) */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,700;0,800;0,900;1,800&family=Inter:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');
/* 🎯 Dark Theme Body Styling */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff; /* White text for Dark Theme */
  text-align: center;
  background: #05161e; /* Ultra Dark Navy Background */
}

h1, h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
}

/* --- MainStay Gallery Header (Dark) --- */
.gallery-bespoke-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #ffffff; /* Deep Navy Header */
  border-bottom: 5px solid #a1d7be; /* Mint Accent Border */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn-antique-outline {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color:#05161e; /* Mint text */
  text-decoration: none;
  padding: 12px 28px;
  border: 2px solid #05161e;
  transition: all 0.3s ease;
}

.btn-antique-outline:hover {
  background: #a1d7be;
  color: #0A2533;
  transform: translateY(-2px);
}

/* --- Collage Grid Section --- */
.collage-gallery {
  padding: 80px 5%;
  background: #05161e; /* Matches Body */
}

.collage-header {
  text-align: center;
  margin-bottom: 60px;
}

.heritage-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #a1d7be; /* Mint Accent */
  text-transform: uppercase;
  font-weight: 700;
}

.collage-title {
  font-family: 'Mulish', sans-serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin: 10px 0;
  text-transform: uppercase;
}

.collage-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #a1d7be;
  text-transform: none;
}

.ornate-separator {
  color: #a1d7be;
  font-size: 20px;
  opacity: 0.4;
}

/* The Masonry Grid */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.collage-item {
  position: relative;
  overflow: hidden;
  background: #0A2533; 
  border: 1px solid rgba(161, 215, 190, 0.2); /* Faded Mint border */
  display: block;
}

.item-wide { grid-column: span 2; }
.item-tall { grid-row: span 2; }

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0.8; /* Slightly dimmed for dark theme base */
}

/* Hover Caption Card */
.collage-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 22, 30, 0.9); /* Matching dark background */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.collage-item:hover .collage-caption {
  opacity: 1;
}

.collage-item:hover img {
  transform: scale(1.05);
  opacity: 0.2;
}

.category {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #a1d7be;
  margin-bottom: 12px;
}

.collage-caption h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .collage-grid { grid-template-columns: repeat(2, 1fr); }
  .item-wide, .item-tall { grid-column: span 1; grid-row: span 1; }
  .collage-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
  .collage-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .collage-title { font-size: 2rem; }
  .gallery-bespoke-header { background: #05161e; }
}

/* SVG Logo Adjustment for Dark Background */
.logo-control {
  display: block;
  width: 200px; 
  height: auto;
  max-height: 70px;
 
  object-fit: contain;
}