/* Base reset and helpers */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fdfdfb;
}

/* Header */
header {
  background: #3b2e2a;
  color: #fff;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header h1 { font-size: 1.8rem; letter-spacing: 0.5px; }
nav ul { list-style: none; display: flex; gap: 14px; }
nav a { color: #fff; text-decoration: none; font-weight: 700; }
nav a:hover { text-decoration: underline; }

/* Hero (no cropping) */
.hero { background: #f8f5f0; }
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 56px 20px;
  display: grid; gap: 22px; align-items: center;
  grid-template-columns: 1fr; /* mobile first */
}
.hero-copy h2 { font-size: 2.2rem; color: #3e2e19; margin-bottom: 10px; }
.hero-copy p { font-size: 1.1rem; color: #444; margin-bottom: 16px; max-width: 60ch; }
.hero-visual img {
  width: 100%; height: auto; display: block; border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.btn {
  display: inline-block;
  background: #d4af37;
  color: #3b2e2a;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.btn:hover { background: #b8962e; }

/* Sections */
.about, .services, .testimonials, .gallery, .contact {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about h2, .services h2, .testimonials h2, .gallery h2, .contact h2 {
  font-size: 2rem; color: #3e2e19; margin-bottom: 16px;
}
.about p { margin-bottom: 14px; font-size: 1.08rem; color: #454545; }

/* Services */
.services { background: #fdfcf8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.service-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service {
  background: #fff; border-radius: 10px; padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.service h3 { margin-bottom: 8px; color: #3b2e2a; }
.service p { color: #555; }

/* Testimonials */
.testimonials .testi-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  background: #fff; border-left: 4px solid #d4af37;
  padding: 16px 16px 14px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.quote blockquote { font-style: italic; color: #333; margin-bottom: 8px; }
.quote figcaption { color: #6a5f5a; }

/* Gallery (no cropping) */
.gallery { background: #fff; }
.photos {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.photos figure {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12); text-align: center;
  padding: 10px; /* adds spacing so portrait images don't touch edges */
}
.photos img {
  width: 100%; height: auto; display: block; /* keeps full photo, no crop */
}
.photos figcaption {
  padding-top: 8px; font-style: italic; color: #555;
}

/* Contact */
.contact p { margin-bottom: 10px; }
.wa-pill {
  display: inline-block; background: #25D366; color: #fff;
  padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: 700;
}
.wa-pill:hover { background: #1ebe5d; }

form {
  margin: 16px 0; display: flex; flex-direction: column; gap: 10px;
  background: #f8f5f0; padding: 20px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
label { font-weight: 700; color: #3e2e19; }
input, textarea {
  width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px;
  font-family: inherit; font-size: 1rem; color: #333; background: #fff;
}
button {
  align-self: start; background: #3b2e2a; color: #fff; border: none;
  padding: 10px 18px; border-radius: 6px; font-weight: 700; cursor: pointer;
}
button:hover { background: #5a4339; }

.map { margin-top: 18px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  text-decoration: none; box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  font-size: 24px; color: #fff; z-index: 1000;
}
.whatsapp-float:hover { background: #1ebe5d; }

/* Footer */
footer {
  text-align: center; background: #3b2e2a; color: #fff;
  padding: 18px; margin-top: 40px;
}

/* Larger screens: put hero text and image side-by-side */
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; }
}

/* Small screens tweaks */
@media (max-width: 640px) {
  header { gap: 10px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .hero-copy h2 { font-size: 1.9rem; }
}
