/* Base styles */
body {
  font-family: 'Georgia', serif;
  margin: 0;
  background-color: #f7fdf9;
  color: #2e3e2e;
}

/* Navigation */
nav {
  background-color: #e2f0d9;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #c0dbc0;
}

nav a {
  margin: 0 15px;
  color: #305030;
  text-decoration: none;
  font-weight: bold;
}

/* Hero section with background image */
.hero {
  background: url('photos/hero.jpg') center/cover no-repeat;
  color: white;
  text-shadow: 1px 1px 3px #00000088;
  padding: 100px 20px;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 20px 30px;
  border-radius: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 10px;
  background-color: #5b8c5a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn.outline {
  background: transparent;
  border: 2px solid white;
}

/* Main content */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
}

/* Section headings */
h2 {
  border-bottom: 2px solid #b8d5b8;
  padding-bottom: 5px;
  color: #4c714c;
}
/* Photo gallery styling */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.gallery img {
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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