
/* === Base Styling === */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fff9f1;
  color: #000;
  margin: 0;
}

/* === Top Bar === */
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem 0.5rem;
  text-align: center;
}
.logo img {
  height: 200px;
  display: block;
}
@media (min-width: 768px) {
  .logo img {
    height: 160px;
  }
}

/* === Navbar === */
.navbar {
  background-color: #88aa7c;
}
.navbar-nav {
  margin: 0 auto;
}
.nav-link {
  color: #fff !important;
  margin: 0 1rem;
  font-weight: 500;
}
.navbar-toggler {
  border-color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* === Hero Section (Default) === */
.hero {
  background: url('images/hero.jpg') center center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 600;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* === Page Specific Hero Overrides === */
.lake-hero {
  background: url('images/lake-hero.jpg') center center/cover no-repeat;
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
}
.lake-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.guest-hero {
  background: url('images/guest-hero.jpg') center center/cover no-repeat;
}

/* === CTA Button === */
.btn-cta {
  background-color: #88aa7c;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
}
.btn-cta:hover {
  background-color: #729165;
}

/* === Section Content === */
.section-content {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.section-content h1 {
  color: #000;
}
.section-content h2 {
  color: #88aa7c;
}
.section-content ul {
  text-align: left;
  margin: 1rem auto;
  max-width: 700px;
}
.section-content ul li {
  margin-bottom: 0.75rem;
}

/* === Thumbnail Styling === */
.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.thumbnail-row img {
  width: 30%;
  min-width: 220px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
  height: 220px;
}
.thumbnail-row img:hover {
  transform: scale(1.05);
}
.modal-img {
  width: 100%;
  border-radius: 10px;
}

/* === Footer === */
footer {
  background-color: #88aa7c;
  color: #fff;
  padding: 30px 0 20px;
  text-align: center;
}
footer .contact-details {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  color: #ddd;
}
footer .social-icons a {
  color: #fff !important;
}

/* === Contact Page === */
.contact-form label {
  margin-top: 1rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
}
.contact-form button {
  background-color: #88aa7c;
  color: #fff;
  border: none;
}
.contact-form button:hover {
  background-color: #729165;
}
iframe {
  width: 100%;
  height: 400px;
  border: 0;
  margin-top: 2rem;
  border-radius: 10px;
}

/* === Guest Info === */
.guest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.guest-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.guest-hero .hero-content p.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #fff;
}

/* === Environmental Policy === */
.environmental-policy h1,
.environmental-policy h2 {
  color: #88aa7c;
}

/* === Responsible Visitor Charter === */
.visitor-charter h1,
.visitor-charter h2 {
  color: #88aa7c;
  font-weight: 600;
  margin-top: 2rem;
}

/* === Terms & Conditions === */
.terms h1,
.terms h2 {
  color: #88aa7c;
  font-weight: 600;
  margin-top: 2rem;
}

/* === Kingfisher Lodge === */
.kingfisher-lodge h1 {
  color: #88aa7c;
}

/* === Heron Lodge === */
.heron-lodge h1 {
  color: #88aa7c;
}

/* === Willow Lodge === */
.willow-lodge h1 {
  color: #88aa7c;
}

/* === Bluebell Retreat === */
.bluebell-retreat h1 {
  color: #88aa7c;
}

/* === Foxglove Retreat === */
.foxglove-retreat h1 {
  color: #88aa7c;
}

/* === Things to Do === */
.section-content.things-to-do .section-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* === Lodges Overview Page === */
.lodge-card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.lodge-card:hover {
  transform: translateY(-5px);
}
.lodge-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.lodge-card h5 {
  font-weight: 600;
  color: #88aa7c;
  margin-bottom: 10px;
}
.lodge-card p {
  margin-bottom: 20px;
}
.lodge-card .btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.section-title {
  color: #88aa7c;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
