
/* Base Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

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

a {
  color: #1a5a3f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: url('assets/hero-forest.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .logo,
.hero .headline,
.hero .subhead {
  position: relative;
  z-index: 2;
}

.headline {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.subhead {
  font-size: 1.3rem;
  max-width: 700px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* General Layout */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Map Image */
.map-img {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #e5efe8;
  font-size: 0.9rem;
  color: #555;
}
