body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdfaf6;
  color: #333;
}

header {
  background-color: #fff8ef;
  padding: 3rem 1rem;
  text-align: center;
  border-bottom: 2px solid #e0d6c5;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

header p {
  font-style: italic;
  color: #777;
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

.intro {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  box-sizing: border-box;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 4px solid #eae2d7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 6px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.contact {
  margin-top: 4rem;
}

form {
  background: #fff;
  padding: 2rem;
  border: 1px solid #e3ded7;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form button {
  background-color: #8b5e3c;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #734d2f;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  background: #f3eee8;
  color: #555;
  margin-top: 4rem;
}

/* Testimonials section */
.testimonials h2 {
  font-family: 'Georgia', serif;
  text-align: center;
  margin-bottom: 1rem;
}

#testimonials-list {
  max-width: 700px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#testimonials-list blockquote {
  background: #fff8ef;
  padding: 1rem 1.5rem;
  border-left: 4px solid #8b5e3c;
  border-radius: 6px;
}
  
#testimonial-form {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#testimonial-form input,
#testimonial-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
}

#testimonial-form button {
  background-color: #8b5e3c;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

#testimonial-form button:hover {
  background-color: #734d2f;
}

/* Lightbox overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

