/* WeWa RV Park - Styles */
/* Color palette: Natural wood tones + water blues */

:root {
  --color-wood-dark: #3d2914;
  --color-wood-medium: #6b4423;
  --color-wood-light: #a67c52;
  --color-cream: #faf6f0;
  --color-water-dark: #1a4a5e;
  --color-water-light: #4a8fa8;
  --color-accent: #c4540a;
  --color-text: #2c2416;
  --color-text-light: #5a4d3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-wood-dark);
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.25rem 0; }

a {
  color: var(--color-water-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--color-wood-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--color-water-light);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header-phone:hover {
  background: #a84508;
  color: white;
}

.header-phone svg {
  width: 20px;
  height: 20px;
}

/* Navigation */
.main-nav {
  background: var(--color-wood-medium);
  padding: 0.75rem 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-water-dark) 0%, var(--color-wood-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.hero-home {
  background: linear-gradient(rgba(26, 74, 94, 0.7), rgba(61, 41, 20, 0.8)), url('/images/hero-rv-park.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}

.hero-home h1,
.hero-home .hero-tagline {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-cta:hover {
  background: #a84508;
  color: white;
  transform: scale(1.03);
}

.hero-cta svg {
  width: 28px;
  height: 28px;
}

/* Pricing Banner */
.pricing-banner {
  background: var(--color-wood-light);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.pricing-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-item {
  text-align: center;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.9;
}

/* Content Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-water-light);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--color-water-light);
}

.feature-card h3 {
  color: var(--color-water-dark);
  margin-bottom: 0.75rem;
}

/* Amenities List */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.amenities-list svg {
  width: 24px;
  height: 24px;
  color: var(--color-water-dark);
  flex-shrink: 0;
}

/* Location Info */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.location-distance {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

/* CTA Section */
.cta-section {
  background: var(--color-wood-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-phone:hover {
  background: #a84508;
  color: white;
  transform: scale(1.03);
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-light);
  border-left: 4px solid var(--color-water-light);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Trading Post Page */
.trading-hero {
  background: linear-gradient(135deg, var(--color-wood-medium) 0%, var(--color-wood-dark) 100%);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  background: linear-gradient(135deg, var(--color-wood-light) 0%, var(--color-water-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

/* Footer */
.site-footer {
  background: var(--color-wood-dark);
  color: var(--color-cream);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-water-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-cream);
  opacity: 0.9;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
}

.footer-phone:hover {
  color: var(--color-water-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  html { font-size: 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 2rem; }
  .hero-tagline { font-size: 1.1rem; }

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .pricing-items { gap: 2rem; }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .section { padding: 3rem 0; }

  .cta-phone {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}

/* Print styles for accessibility */
@media print {
  .site-header, .main-nav, .cta-section { display: none; }
  body { font-size: 12pt; }
}


