
/* =========================
   Base
========================= */

:root {
  --cream: #f7f3ea;
  --sage: #a8bda8;
  --dusty-blue: #8fafc1;
  --forest: #4f6b5b;
  --taupe: #cfc3b4;
  --text-dark: #2f3b34;
  --text-soft: #5e6b64;
  --white: #ffffff;
  --border: rgba(79, 107, 91, 0.15);
  --shadow: 0 12px 30px rgba(47, 59, 52, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 800px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 5.5rem 0;
}

.center {
  text-align: center;
}

.alt-bg {
  background-color: #eef4ef;
}

.section-label {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-soft);
}

.text-link {
  color: var(--forest);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

/* =========================
   Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 2rem;
}

.logo {
  font-size: 1.3rem;
  color: var(--forest);
  font-weight: 700;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--forest);
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(31, 45, 39, 0.45), rgba(31, 45, 39, 0.45)),
    url("images/forest-hero.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e7f0e8;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero-text {
  font-size: 1.15rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================
   Buttons
========================= */
/* =========================
   Buttons (FIXED)
========================= */

.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

/* 🔥 FORCE correct button text color */
.btn-primary {
  background-color: var(--forest);
  color: #ffffff !important;
}

.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #42594b;
  color: #ffffff !important;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

/* =========================
   About preview
========================= */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-text p {
  color: var(--text-soft);
}

/* =========================
   Blog preview
========================= */

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.featured-post-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-post-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.featured-post-content p:last-of-type {
  color: var(--text-soft);
}

/* =========================
   CTA
========================= */

.cta {
  background: linear-gradient(180deg, #f7f3ea 0%, #edf4f0 100%);
}

.cta p {
  color: var(--text-soft);
}

/* =========================
   Footer
========================= */

.site-footer {
  background-color: var(--forest);
  color: var(--white);
  padding: 3rem 0;
}

.site-footer h3,
.site-footer p {
  color: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .card-grid,
  .split-layout,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-image {
    height: 420px;
  }

  .featured-post-image {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    gap: 0.9rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: fit-content;
  }
}



/* =========================
   Services Page
========================= */

.hero-services {
  background:
    linear-gradient(rgba(30, 45, 39, 0.58), rgba(30, 45, 39, 0.58)),
    url("images/waves.jpg") center/cover no-repeat;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

/* Improve spacing for section text blocks */
.narrow p + p {
  margin-top: 1rem;
}

/* Optional active nav feel if you add classes later */
.site-nav a.active {
  color: var(--forest);
  font-weight: 700;
}

/* Responsive tweak for services */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card h2 {
    font-size: 1.45rem;
  }
}

.hero-about {
  background:
    linear-gradient(rgba(30, 45, 39, 0.55), rgba(30, 45, 39, 0.55)),
    url("images/forest-hero2.jpg") center/cover no-repeat;
}

/* =========================
   Contact Page
========================= */

.hero-contact {
  background:
    linear-gradient(rgba(30, 45, 39, 0.55), rgba(30, 45, 39, 0.55)),
    url("images/sky.jpg") center/cover no-repeat;
}

/* Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left side */
.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 1.5rem;
}

.contact-details a {
  color: var(--forest);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-alt {
  margin-top: 2rem;
  font-weight: 500;
}

.contact-alt a {
  color: var(--forest);
  font-weight: 700;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: Arial, sans-serif;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.4rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--forest);
}

/* Note */
.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Booking Page
========================= */

.hero-booking {
  background:
    linear-gradient(rgba(30, 45, 39, 0.55), rgba(30, 45, 39, 0.55)),
    url("images/forest-hero.jpg") center/cover no-repeat;
}

.booking-button-wrap {
  margin-top: 2rem;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.booking-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.booking-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.booking-info-card a {
  color: var(--forest);
  font-weight: 700;
}

.booking-info-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .booking-steps {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Blog Page
========================= */

.hero-blog {
  background:
    linear-gradient(rgba(30, 45, 39, 0.55), rgba(30, 45, 39, 0.55)),
    url("images/blog-hero.jpg") center/cover no-repeat;
}

.blog-maintenance {
  max-width: 600px;
}

.blog-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-buttons .btn-secondary {
  background-color: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.blog-buttons .btn-secondary:hover {
  background-color: rgba(79, 107, 91, 0.08);
  color: var(--forest);
}