@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

body {
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.hero-bg {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
                    url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gallery-img {
  transition: transform 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.prose {
  color: #27272a;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b45309;
}

.nav-link.active {
  color: #b45309;
}

#map {
  filter: contrast(1.05) saturate(1.1);
}
.location-bg {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
                    url('images/icons/map_bh.png');
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
}