@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* 🎯 General Body Styling */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 20px;
  color: #0f2d3f; /* Dark navy text */
  text-align: center;

  /* Background with fade effect */
  background: 
    
    url('images/antique-texture.jpg') no-repeat center center fixed; /* replace with your image */
  background-size: cover;
}

h1, h2 {
  font-size: 3rem;
  color: #0f2d3f; /* Dark navy headings */
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(15, 45, 63, 0.1); /* Subtle navy shadow */
}

/* --- Bespoke Gallery Header --- */
.gallery-bespoke-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: 
    
    url('images/antique-texture.jpg') no-repeat center center fixed; /* replace with your image */
  background-size: cover;
  border-bottom: 1px solid #eee5d8;
}

.btn-antique-outline {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #ffc102;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #ffc102;
  transition: 0.3s;
}

.btn-antique-outline:hover {
  background: #2a4d37;
  color: #fff;
}
/* Logo Styling */
.logo-control {
  max-height: 100px;
  max-width: 250px;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 20px;
  padding: 8px 16px;
  border-radius: 12px;

}

.logo-control:hover {
  transform: scale(1.05);
  
}
/* --- Collage Grid Section --- */
.collage-gallery {
  padding: 80px 5%;
  background: #fdfbf7;
}

.collage-header {
  text-align: center;
  margin-bottom: 60px;
}

.heritage-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #8b6b32;
  text-transform: uppercase;
}

.collage-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #2a4d37;
  margin: 10px 0;
}

.collage-title span {
  font-style: italic;
  font-weight: 400;
}

.ornate-separator {
  color: #d4af37;
  font-size: 20px;
}

/* The Masonry Logic */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; /* Base height for grid rows */
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.collage-item {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid #eee5d8;
  display: block;
}

/* Masonry Spanning */
.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.4s ease;
  opacity: 0.95;
}

/* Floating Caption Card (Unique Design) */
.collage-caption {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(42, 77, 55, 0.85); /* Victorian Green with transparency */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
  border: 1px solid #d4af37; /* Gold Inner Border */
}

.collage-item:hover .collage-caption {
  opacity: 1;
  transform: scale(1);
}

.collage-item:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.category {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 10px;
}

.collage-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0;
}

/* --- 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; }
}

@media (max-width: 600px) {
  .collage-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .collage-title { font-size: 2rem; }
}