body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6f5f0;
  color: #333;
}

header {
  background-color: #4b6b43;
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-style: italic;
  margin-top: 0.5rem;
}

/* Centered header logo */
.logo-header {
  background-color: #4b6b43;
  padding: 2rem 1rem;
  text-align: center;
}

.header-image img {
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.site-logo-centered {
  display: block;
  margin: 0 auto;
}
nav {
  background-color: #3a5130;
  text-align: center;
  padding: 0.5rem;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}
.intro-text {
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.6;
}

section {
  padding: 1rem;
  max-width: 900px;
  margin: auto;
}
.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.content-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}
footer {
  background-color: #4b6b43;
  color: white;
  text-align: center;
  padding: 1rem;
}

footer a {
  color: white;
  text-decoration: none;
  font-size: 0.9em;
}

footer a:hover {
  text-decoration: underline;
  color: #f5c542; /* Optional: soft gold on hover */
}

footer a img {
  height: 24px;
  vertical-align: middle;
  margin-right: 6px;
}

.testimonial {
  background-color: #e9e7e1;
  border-left: 6px solid #4a5f39;
  padding: 1em;
  margin: 1em 0;
}

.testimonial p {
  margin: 0 0 0.5em;
}

.testimonial footer {
  font-style: italic;
  color: #4a5f39;
}

.testimonials-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.testimonial-card {
  background-color: #eae8e1;
  border-left: 5px solid #406343;
  padding: 1.2rem;
  font-style: italic;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
  margin: 0 0 0.5rem;
}

.testimonial-card .author {
  font-weight: bold;
  font-style: normal;
  color: #406343;
  margin-top: 0.5rem;
}

/* Responsive styling for section images */
.section-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.section-image {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #39592f;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #2c4724;
}
.gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-thumbnails img {
  max-width: 200px;
  height: auto;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.gallery-thumbnails img:hover {
  transform: scale(1.05);
}
.gallery-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.gallery-group img {
  width: 180px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

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

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center;
  z-index: 1000;
  overflow: auto; /* in case image is tall on small screens */
}

.lightbox-content {
  margin-top: 2rem; /* some spacing below top */
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 10px;
  font-size: 1.1em;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

.lightbox .prev,
.lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}