/* ===========================
   SHEARIN RV PARK — STYLESHEET
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #3a7a1e;
  --green-light: #4e9e29;
  --dark: #1a1a1a;
  --gray: #f4f4f0;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { margin-top: 0.6rem; color: var(--text-light); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  margin-top: 1.5rem;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(58,122,30,0.3); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-logo img { height: 56px; width: auto; }
.logo-fallback {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); border-color: var(--green); }

.nav-tenant {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 50px;
  border-bottom: none !important;
}
.nav-tenant:hover { background: var(--green-light) !important; color: var(--white) !important; }

/* ---- HERO SECTION ---- */
.hero-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.hero-text h1 { color: var(--dark); }
.hero-text p { font-size: 1.1rem; margin-top: 0.8rem; }

.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ---- SPLIT SECTIONS ---- */
.split-section {
  padding: 4rem 2rem;
}
.split-section.bg-light { background: var(--gray); }

.split-section > div:first-child,
.split-section > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.address-line {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 1rem;
}

/* ---- AMENITIES STRIP ---- */
.amenities-strip {
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.amenity-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.amenity-item:last-child { border-right: none; }

/* ---- PAGE HEADER ---- */
.page-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.page-header p { font-size: 1.05rem; margin-top: 0.8rem; }
.page-header a { color: var(--green); font-weight: 600; }

/* ---- PRICING ---- */
.pricing-section { padding: 2rem 2rem 4rem; max-width: 900px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--green);
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(58,122,30,0.15);
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0.5rem 0;
}

.pricing-card h3 { color: var(--text-light); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-card p { font-size: 0.85rem; margin-bottom: 1rem; }

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pet-policy {
  margin-top: 2.5rem;
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #5d4037;
}

/* ---- AMENITIES SECTION ---- */
.amenities-section {
  background: var(--gray);
  padding: 4rem 2rem;
  text-align: center;
}
.amenities-section h2 { margin-bottom: 2rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ---- FORM SECTION ---- */
.form-section {
  padding: 2rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full-width { grid-column: 1 / -1; margin-bottom: 1.2rem; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea { resize: vertical; }

/* ---- CONTACT SECTION ---- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  align-items: start;
}

.contact-card { }
.contact-card h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item .icon { font-size: 1.4rem; line-height: 1; }
.contact-item strong { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.2rem; }
.contact-item p { margin: 0; color: var(--text); }
.contact-item a { color: var(--green); font-weight: 600; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 2.5rem 2rem 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img { height: 48px; width: auto; opacity: 0.9; }

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #aaa;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 1.2rem auto 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: #aaa; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.map-link { color: var(--green-light) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid #f0f0f0; }
  .nav-links a { display: block; padding: 1rem 2rem; border-bottom: none; }

  .hero-content,
  .split-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-section.reverse { direction: ltr; }
  .split-image { order: -1; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }

  .form-row { grid-template-columns: 1fr; }

  .contact-section { grid-template-columns: 1fr; }

  .amenities-strip { flex-direction: column; }
  .amenity-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .amenity-item:last-child { border-bottom: none; }

  .footer-inner, .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- RIVER HILL OVERRIDES ---- */
:root {
  --green: #1a6b5a;
  --green-light: #228b73;
}

.promo-bg { background: #f0f7f5; }

.promo-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; margin-top: 0; }
.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}
.nav-phone:hover { color: var(--green); }

.pricing-single {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.pricing-card.solo { max-width: 320px; width: 100%; }

.no-daily {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.rules-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.rules-link a { color: var(--green); font-weight: 600; }

.booking-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  text-align: center;
}

.waitlist-notice {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.waitlist-notice p { font-size: 1rem; color: var(--text); }

.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-light);
  font-size: 0.85rem;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid #ddd;
}

.call-cta p { margin-top: 0.5rem; font-size: 0.85rem; color: var(--text-light); }

@media (max-width: 768px) {
  .nav-cta { display: none; }
}
