
/* Unique Font: Outfit (Geometric & Modern) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');
/* 🎯 Dark Theme Body Styling */
body {
    font-family: 'Outfit', 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: 'Outfit', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
}

/* ============================================================
   BESPOKE GALLERY - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D | Dark Base: #000e1f
   ============================================================ */

/* --- Gallery Header (Modern & Sticky) --- */
.gallery-bespoke-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #ffffff; 
  /* Bold Orange Accent Border */
  border-bottom: 5px solid #F7941D; 
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-antique-outline {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
  color: #001a3a; /* Navy text */
  text-decoration: none;
  padding: 12px 28px;
  border: 2px solid #001a3a;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 2px;
}

.btn-antique-outline:hover {
  background: #001a3a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 26, 58, 0.2);
}

/* --- Collage Grid Section --- */
.collage-gallery {
  padding: 80px 5%;
  background: linear-gradient(135deg, rgba(0, 38, 84, 0.96) 0%, rgba(0, 50, 100, 0.96) 100%);
}

.collage-header {
  text-align: center;
  margin-bottom: 60px;
}

.heritage-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #F7941D; /* Comfort Orange Accent */
  text-transform: uppercase;
  font-weight: 800;
}

.collage-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin: 10px 0;
  text-transform: uppercase;
  font-weight: 900;
}

.collage-title span {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #F7941D;
  text-transform: none;
  letter-spacing: -1px;
}

.ornate-separator {
  color: #F7941D;
  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: #001a3a; 
  border: 1px solid rgba(247, 148, 29, 0.2); /* Faded Orange 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.85; /* Slightly dimmed to allow dark mode feel */
}

/* Hover Caption Card (Orange Theme) */
.collage-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 26, 58, 0.92); /* Navy overlay */
  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.08);
  opacity: 0.3;
}

.category {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #F7941D;
  margin-bottom: 12px;
  font-weight: 700;
}

.collage-caption h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* --- 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 { border-bottom-width: 3px; }
}

/* SVG Logo Adjustment */
.logo-control {
  display: block;
  width: 180px; 
  height: auto;
  max-height: 60px;
  object-fit: contain;
}