/* Optimized Font Pairing: Unified Clean UI Stack */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');
/* 🎯 Light Theme Clean Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #05261C; /* Main text set to brand premium deep green */
  text-align: center;
  background: #fcfbfa; /* Matches the clean off-white inner page canvas look */
}

h1, h2 {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  color: #05261C;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* --- Hotel Gallery Header Banner --- */
.gallery-bespoke-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #ffffff; 
  border-bottom: 5px solid #05261C; /* Solid premium forest green anchor strip */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(5, 38, 28, 0.04);
}

.btn-antique-outline {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: #05261C; /* Default button borders and text set to brand green */
  text-decoration: none;
  padding: 12px 28px;
  border: 2px solid #05261C;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-antique-outline:hover {
  background: #E6B022; /* Transitions seamlessly into rich brand gold on focus */
  color: #05261C;
  border-color: #E6B022;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 176, 34, 0.2);
}

/* --- Collage Grid Section --- */
.collage-gallery {
  padding: 80px 5%;
  background: #fcfbfa; 
}

.collage-header {
  text-align: center;
  margin-bottom: 60px;
}

.heritage-tag {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #E6B022; /* Category tag set to elegant brand gold */
  text-transform: uppercase;
  font-weight: 700;
}

.collage-title {
  font-family: 'Georgia', serif;
  font-size: 3.5rem;
  color: #05261C;
  margin: 10px 0;
  font-weight: 600;
  line-height: 1.2;
}

.collage-title a {
  color: #05261C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.collage-title a:hover {
  color: #E6B022;
}

.collage-title span {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  color: rgba(5, 38, 28, 0.6); /* Soft green alpha opacity for secondary description */
  text-transform: none;
  font-size: 1.5rem;
  display: block;
  margin-top: 5px;
}

.ornate-separator {
  color: #E6B022; /* Changed star decorative character to gold */
  font-size: 20px;
  opacity: 0.5;
}

/* 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: #05261C; 
  border: 1px solid rgba(5, 38, 28, 0.08); 
  display: block;
  border-radius: 10px; /* Enhanced slightly to keep consistency across inner pages cards */
}

.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: 1; 
}

/* Hover Caption Card Overlay */
.collage-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 38, 28, 0.95); /* Deep solid forest green background matrix on active hover */
  color: #ffffff;
  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.12;
}

.category {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #E6B022; /* Highlight card label pops with high contrast premium brand gold text */
  margin-bottom: 12px;
  font-weight: 700;
}

.collage-caption h3 {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 1024px) {
  .collage-gallery {
    padding: 60px 15px;
  }
  .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: #ffffff; }
}

/* SVG Logo Adjustment */
.logo-control {
  display: block;
  width: 200px; 
  height: auto;
  max-height: 70px;
  object-fit: contain;
}