/* ========================================
   Bright Sky Campgrounds — Styles
   ======================================== */

/* ---------- Color Palette ---------- */
:root {
  --forest:       #2D5016;
  --forest-dark:  #1A3409;
  --sage:         #6B8F4E;
  --tan:          #C9A96E;
  --sand:         #E8DCC8;
  --cream:        #F7F3ED;
  --bark:         #5C4033;
  --bark-light:   #7A5C47;
  --white:        #FFFFFF;
  --off-white:    #FAFAF7;
  --text-dark:    #2C2C2C;
  --text-body:    #4A4A4A;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-body);
  background-color: var(--off-white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--text-dark);
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--sage);
}

/* ---------- Utility ---------- */
.text-accent  { color: var(--forest) !important; }
.bg-light-green { background-color: var(--cream); }

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}

.section-lead {
  font-size: 1.125rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
}

/* ---------- CTA Button ---------- */
.btn-cta {
  background-color: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.25s, transform 0.15s;
}
.btn-cta:hover,
.btn-cta:focus {
  background-color: var(--sage);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Navbar ---------- */
#mainNav {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.35s;
  padding: 0.75rem 0;
}

#mainNav .navbar-brand img {
  transition: filter 0.3s;
}

#mainNav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--forest);
}

#mainNav .navbar-toggler {
  border-color: rgba(0,0,0,0.2);
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 52, 9, 0.65) 0%,
    rgba(26, 52, 9, 0.45) 100%
  );
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  max-width: 600px;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ---------- About / Value Props ---------- */
.value-prop {
  padding: 1.5rem 1rem;
}
.value-prop p {
  font-size: 0.95rem;
}

/* ---------- Campground Cards ---------- */
.campground-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}
.campground-card .campground-img-wrap {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sand);
  background-size: cover;
  background-position: center;
  padding: 2rem;
  position: relative;
}
.campground-badge {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.campground-name {
  color: var(--forest-dark);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.campground-lake {
  color: var(--sage);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.campground-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}
.campground-list li::before {
  content: "\F26A"; /* bi-check-circle */
  font-family: 'bootstrap-icons';
  margin-right: 0.4rem;
  color: var(--sage);
}

.coming-soon .badge.bg-accent-light {
  background-color: var(--sand) !important;
  color: var(--bark);
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

/* ---------- FAQ ---------- */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e8e3da;
  background-color: transparent;
}
.accordion-button {
  font-family: 'Lora', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  background-color: transparent;
  padding: 1.25rem 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--forest);
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(1500%) hue-rotate(70deg) brightness(95%);
}
.accordion-body {
  padding: 0 0 1.25rem 0;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- Discounts ---------- */
.discount-card {
  background-color: var(--white);
  border: 1px solid #e8e3da;
  height: 100%;
}
.discount-card h5 {
  font-size: 1.05rem;
}
.text-forest {
  color: var(--forest);
}

/* ---------- Contact ---------- */
.form-control,
.form-select {
  border-color: #d4cfc6;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.2rem rgba(107, 143, 78, 0.2);
}

.contact-info a {
  color: var(--text-body);
}
.contact-info a:hover {
  color: var(--forest);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--forest-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
.footer-links li {
  margin-bottom: 0.35rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--tan);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: background-color 0.25s;
}
.social-icons a:hover {
  background-color: var(--sage);
  color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .campground-card .campground-img-wrap {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 3rem 0;
  }
  .hero-section {
    min-height: 85vh;
  }
}
