/* ========= Base Reset ========= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #fff; color: #333; line-height: 1.6; }

/* ========= Header (shared on all pages) ========= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2f8f44;
  padding: 10px 20px;
  width: 100%;
  flex-wrap: wrap;
}
.logo-and-title { display: flex; align-items: center; gap: 10px; }
header h1 { color: #fff; font-size: 28px; margin: 0; }
header nav { flex: 1; }
header nav ul {
  display: flex; list-style: none; gap: 15px;
  margin: 0; padding: 0; flex-wrap: wrap; justify-content: flex-end;
}
header nav ul li a { color: #fff; text-decoration: none; font-weight: bold; padding: 5px 8px; }
header nav ul li a:hover { text-decoration: underline; }

/* ========= Book Now strip (RIGHT on all screens) ========= */
.book-now-below {
  position: sticky; top: 0; z-index: 999; width: 100%;
  display: flex; justify-content: flex-end; padding: 12px 20px;
  background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.book-now-below a {
  display: inline-block; background-color: #ffcc00; color: #333;
  padding: 12px 22px; font-weight: bold; border-radius: 6px; text-decoration: none;
  transition: background-color .3s ease, transform .15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.book-now-below a:hover { background-color: #ff9900; transform: translateY(-1px); }

/* ========= Generic Layout ========= */
section { padding: 20px; max-width: 1000px; margin: auto; }

/* Slideshow helpers (keep your original behavior) */
.slideshow-fullwidth { width: 100%; overflow: hidden; }
.hero-image { width: 100%; height: auto; display: none; }
.hero-image.active { display: block; }

/* Contact */
.contact-two-column { display: flex; flex-wrap: wrap; gap: 40px; max-width: 1000px; margin: auto; padding: 40px 20px; }
.contact-left { flex: 1; min-width: 280px; text-align: left; }
.contact-left h2 { color: #2f8f44; font-size: 28px; margin-bottom: 10px; }
.contact-left p { font-size: 16px; margin: 10px 0; }
.contact-right { flex: 1; min-width: 300px; }
.contact-right form { display: flex; flex-direction: column; gap: 15px; }
.name-fields { display: flex; gap: 10px; }
.name-fields input { flex: 1; }
.contact-right input, .contact-right textarea { padding: 10px; font-size: 16px; border: 1px solid #ccc; border-radius: 5px; }
.contact-right button {
  background-color: #2f8f44; color: #fff; padding: 12px; font-size: 16px;
  border: none; border-radius: 5px; cursor: pointer; transition: background-color .3s ease;
}
.contact-right button:hover { background-color: #276f3c; }

/* Gallery (kept light to avoid changing your sizing) */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; padding: 40px; }
.gallery-item { position: relative; }
.quote {
  position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.6);
  color: #fff; padding: 10px; font-size: 14px; text-align: center;
}

/* Footer */
footer { background-color: #1e7e34; color: #fff; text-align: center; padding: 10px; width: 100%; }
footer a { color: #ffcc00; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ========= Mobile tweaks (header only; Book Now stays RIGHT) ========= */
@media (max-width: 768px) {
  header { flex-direction: column; align-items: center; }
  header h1 { font-size: 22px; text-align: center; }
  header nav ul { justify-content: center; gap: 10px; }
}
