  
 /* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BACKGROUND + BASE TEXT */
body {
    background: url('woods.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
.site-header {
    background: #2e5c2e;
    color: white;
    text-align: center;
    padding: 12px 0;
    border-bottom: 4px solid #1f3f1f;
    position: relative; /* needed for logo positioning */
}

.site-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 3px;
}

.site-header .tagline {
    font-size: 14px;
    opacity: 0.9;

}.header-right {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.header-right div {
    line-height: 1.2;
}
.home-content-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92); /* soft transparency */
  backdrop-filter: blur(3px);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* NAVIGATION */
.main-nav {
    margin-top: 10px;
}

.main-nav a {
    font-size: 28px;
    font-weight: 600;
    margin: 0 14px;
    color: white;
    text-decoration: none;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    position: relative;
    text-align: center;
    overflow: hidden;
    max-height: 320px;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 6px;
}

.hero-text p {
    font-size: 28px;
}

/* CONTENT SECTIONS */
.intro,
.contact-summary {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.intro h2,
.contact-summary h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 20px;
    background: #2e5c2e;
    color: white;
    margin-top: 40px;
}

/* LOT & RV CARDS */
.card-grid {
    max-width: 1000px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
}

  
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    font-size: 20px;
    margin: 12px 0 6px 0;
}

.card p {
    font-size: 16px;
    padding: 0 10px;
}

/* HEADER INNER LAYOUT + LOGO */
.header-inner {
    display: flex;
    justify-content: center;   /* keeps title centered */
    align-items: center;
    position: relative;        /* allows logo to float left */
    padding: 10px 20px;
}
.apply-link {
    color: red !important;
    font-weight: bold;
    text-decoration: underline;
}

.apply-link:hover {
    color: #ff6666 !important;
}
/* Logo positioned top-left */
.site-logo {
    position: absolute;
    left: 20px;
    top: 10px;
    height: 70px;   /* adjust size here */
    width: auto;
    z-index: 10;
}

/* Title block stays centered */
.title-block {
    text-align: center;
}

.title-block h1 {
    margin: 0;
    font-size: 32px;
}

.title-block .tagline {
    margin: 3px 0 0 0;
    font-size: 16px;
}/* Right-side header text */
.header-right {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}
/* Remove green background on FAQ page */
body.faq-page  
.faq-page,

    

.faq-page .content-section {
   .faq-page * {
    background: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}
.faq-page,
  
}.download-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
}

.download-button:hover {
  background-color: #45a049;
}

/* Centered, polished intro section */
.fancy-intro {
  text-align: center;
  margin-bottom: 40px;
}

.fancy-intro h1 {
  font-size: 32px;
  color: #1f4d2b; /* deep forest green */
  margin-bottom: 15px;
  font-weight: 700;
}

.fancy-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
}

/* Section headers with subtle color */
.home-content-box h2 {
  color: #1f4d2b; /* same forest green */
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}

/* Improve spacing for all sections */
.home-content-box section {
  margin-bottom: 35px;
}

/* Fancy buttons */
.cta-button {
  display: inline-block;
  padding: 12px 22px;
  background-color: #2a6f3a; /* rich green */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.25s ease;
}

.cta-button:hover {
  background-color: #1f4d2b;
  transform: translateY(-2px);
}

/* Make the white box even cleaner */
.home-content-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}
/* White content box with premium styling */
.home-content-box {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
  animation: fadeIn 1s ease-out;
}

/* Centered intro with color */
.fancy-intro {
  text-align: center;
  margin-bottom: 40px;
}

.fancy-intro h1 {
  font-size: 34px;
  color: #1f4d2b;
  margin-bottom: 15px;
  font-weight: 700;
}

.fancy-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
}

/* Section headers */
.home-content-box h2 {
  color: #1f4d2b;
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}

/* Fancy buttons */
.cta-button {
  display: inline-block;
  padding: 12px 22px;
  background-color: #2a6f3a;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.25s ease;
}

.cta-button:hover {
  background-color: #1f4d2b;
  transform: translateY(-2px);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Nature-focused color palette */
:root {
  --forest-green: #1f4d2b;
  --leaf-green: #2a6f3a;
  --earth-brown: #5a4632;
  --soft-cream: #faf7f2;
}

/* White content box with nature border */
.home-content-box {
  max-width: 900px;
  margin: 50px auto;
  padding: 45px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  border: 3px solid rgba(42, 111, 58, 0.25); /* soft green border */
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  animation: fadeIn 1s ease-out;
}

/* Centered intro with nature gradient */
.fancy-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 10px;
  background: linear-gradient(
    to bottom,
    rgba(42, 111, 58, 0.12),
    rgba(255, 255, 255, 0)
  );
  border-radius: 12px;
}

.fancy-intro h1 {
  font-size: 34px;
  color: var(--forest-green);
  margin-bottom: 15px;
  font-weight: 700;
}

.fancy-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
}

/* Section headers with leaf icon */
.home-content-box h2 {
  color: var(--forest-green);
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.home-content-box h2::after {
  content: "🍃";
  font-size: 22px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}

/* Improve spacing for all sections */
.home-content-box section {
  margin-bottom: 35px;
}

/* Nature-themed buttons */
.cta-button {
  display: inline-block;
  padding: 12px 22px;
  background-color: var(--leaf-green);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background-color: var(--forest-green);
  transform: translateY(-3px);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Soft list styling */
.home-content-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.home-content-box ul li {
  padding: 8px 0;
  font-size: 18px;
  color: var(--earth-brown);
  position: relative;
  padding-left: 28px;
}

.home-content-box ul li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
}
/* Nature-focused palette */
:root {
  --forest-green: #1f4d2b;
  --leaf-green: #2a6f3a;
  --earth-brown: #5a4632;
  --soft-cream: #faf7f2;
  --moss-green: #dfe9e1;
}

/* Forest silhouette top border */
.home-content-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 45px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  border: 3px solid rgba(42, 111, 58, 0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

/* Tree-line silhouette */
.home-content-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('tree-line.png') repeat-x;
  opacity: 0.25;
}

/* Sunlight gradient behind intro */
.fancy-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 25px 10px;
  background: linear-gradient(
    to bottom,
    rgba(42, 111, 58, 0.18),
    rgba(255, 255, 255, 0)
  );
  border-radius: 14px;
}

.fancy-intro h1 {
  font-size: 36px;
  color: var(--forest-green);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.fancy-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--earth-brown);
  max-width: 750px;
  margin: 0 auto;
}

/* Section headers with leaf accent */
.home-content-box h2 {
  color: var(--forest-green);
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.home-content-box h2::after {
  content: "🍃";
  font-size: 22px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}

/* Section spacing */
.home-content-box section {
  margin-bottom: 40px;
}

/* Nature-themed buttons */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--leaf-green);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

.cta-button:hover {
  background-color: var(--forest-green);
  transform: translateY(-3px);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nature-styled bullet list */
.home-content-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.home-content-box ul li {
  padding: 8px 0;
  font-size: 18px;
  color: var(--earth-brown);
  position: relative;
  padding-left 
}
.fancy-fb a {
  color: var(--forest-green);
  font-weight: 700;
  font-size: 1.15em;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(42, 111, 58, 0.12);
  transition: 0.25s ease;
}

.fancy-fb a:hover {
  background: rgba(42, 111, 58, 0.22);
  color: var(--leaf-green);
}
 /* Facebook link in header */
.fb-small {
  margin-top: 4px;
  font-size: 0.95em;
  line-height: 1.2;
  white-space: nowrap; /* prevents wrapping and header breakage */
}

.fb-small a {
  color: #e8c547; /* warm gold that stands out */
  text-decoration: none;
  font-weight: 700;
}

.fb-small a:hover {
  color: #fff7b3; /* lighter gold on hover */
}

.fb-icon {
  font-size: 1.1em;
  margin-right: 4px;
}
/* Hide menu button on desktop */
.mobile-menu-button {
    display: none;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
}

/* Mobile menu container */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu a:hover {
    color: #ffcc00;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}
/* ------------------------------ */
/* MOBILE HAMBURGER MENU STYLES  */
/* ------------------------------ */

/* Hide menu button on desktop */
.mobile-menu-button {
    display: none;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
}

/* Mobile menu container */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 15px;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    z-index: 9999;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu a:hover {
    color: #ffcc00;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    /* Hide desktop nav on mobile */
    .main-nav {
        display: none;
    }
}
/* HERO SECTION */
.hero {
    position: relative;
    height: 60vh;
    min-height: 380px;
    background-image: url('hero-campground.jpg'); /* replace with your real image file */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 30px 20px;
    max-width: 800px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .cta-button {
    padding: 10px 22px;
    font-size: 1rem;
}

.hero .cta-button.secondary {
    background-color: #ffffff;
    color: #333;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
 
.hero .cta-button.secondary {
    background-color: #ffffff;
    color: #333;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
/* FORCE ALL LISTING IMAGES TO FIT CLEANLY */
.listing-gallery img {
    width: 100%;
    height: 180px;        /* controls height */
    object-fit: cover;    /* crops nicely instead of stretching */
    border-radius: 8px;
}
/* FIX: FORCE LISTING GALLERY IMAGES TO DISPLAY CLEANLY */
.listing-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.listing-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
