/* ==========================================================================
   Cass Lake Hotel - Custom Gallery & Layout Styles
   Dark Navy Background: #0F1722 | Accent Gold: #C2A24D | Amber: #E2C775
   ========================================================================== */

/* Font Pairing: Montserrat (Headings & UI) + Inter (Clean UI Text) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0F1722;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* --- Navigation Header --- */
.gallery-bespoke-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(15, 23, 34, 0.95); 
  border-bottom: 2px solid rgba(194, 162, 77, 0.3); /* Gold baseline */
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-slate-outline {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF; 
  text-decoration: none;
  padding: 12px 28px;
  border: 2px solid #C2A24D;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-slate-outline:hover {
  background: #C2A24D; /* Gold Fill */
  color: #0F1722; 
  box-shadow: 0 0 15px rgba(194, 162, 77, 0.4);
  transform: translateY(-2px);
}

/* --- Collage Grid Section --- */
.collage-gallery {
  padding: 80px 5%;
  background: #0F1722; 
}

.collage-header {
  text-align: center;
  margin-bottom: 60px;
}

.heritage-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: #C2A24D; /* Gold Tag */
  text-transform: uppercase;
  font-weight: 800;
}

.collage-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
  margin: 10px 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.collage-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.collage-title a:hover {
  color: #E2C775; /* Amber Hover Accent */
}

.ornate-separator {
  color: #C2A24D; /* Gold Diamond */
  font-size: 20px;
  margin-top: 10px;
}

/* Masonry Grid Layout */
.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: rgba(255, 255, 255, 0.02); 
  border: 1px solid rgba(194, 162, 77, 0.2); 
  border-radius: 12px;
  display: block;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
  border-color: rgba(194, 162, 77, 0.6);
  box-shadow: 0 10px 30px -10px rgba(194, 162, 77, 0.35);
}

.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 Overlay & Glassmorphism */
.collage-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 34, 0.88); /* Deep Dark Overlay */
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.collage-item:hover .collage-caption {
  opacity: 1;
}

.collage-item:hover img {
  transform: scale(1.06);
  opacity: 0.2;
}

.category {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #E2C775; /* Amber Category Badge */
  margin-bottom: 12px;
  font-weight: 800;
}

.collage-caption h2,
.collage-caption h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive Viewports */
@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.4rem; }
}

@media (max-width: 600px) {
  .collage-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; gap: 15px; }
  .collage-title { font-size: 1.8rem; }
  .gallery-bespoke-header { padding: 12px 4%; }
}

/* Logo Sizing Control */
.logo-control {
  display: block;
  width: auto; 
  height: 120px;
  max-height: 120px;
  object-fit: contain;
}