@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&family=Playfair+Display:wght@500;700&display=swap');
/* Ensure body fits screen */
body {
  font-family: 'Merriweather', serif;
  background-color: #121212; /* elegant dark background */
  color: #e0d7cc;
  line-height: 1.6;
}

/* Responsive nav bar */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background-color: #333;
  padding: 1rem 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Section padding */
.section {
  padding: 1rem;
}

/* Responsive iframe videos */
.video-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 1rem;
}

.video-gallery iframe {
  width: 100%;
  max-width: 350px;
  height: auto;
  aspect-ratio: 9 / 16;
}

/* Responsive gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive footer */
footer {
  background-color: #1b1b1b;
  color: #cbbfae;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  border-top: 3px solid #bfa37c;
}

/* Responsive header */
header {
  padding: 6rem 1rem !important;
  text-align: center;
}

/* Responsive form */
form {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
}

/* Google map full width on mobile */
iframe.map {
  width: 100% !important;
  height: 300px;
  border-radius: 10px;
}
