/* 
 * Prairie Pines Campground - Main Stylesheet
 * Colors: Green/Earth tones with natural elements
 */

/* Variables */
:root {
  --primary-color: #2E7D32; /* Forest Green */
  --primary-light: #60ad5e;
  --primary-dark: #005005;
  --accent-color: #795548; /* Brown */
  --accent-light: #a98274;
  --accent-dark: #4b2c20;
  --text-dark: #212121;
  --text-light: #757575;
  --background-light: #F5F5F5;
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #EEEEEE;
  --gray-medium: #D6D6D6;
  --border-radius: 6px;
  --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

ul {
  list-style-type: none;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: none;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--box-shadow);
}

.secondary-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--gray-light);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo svg {
  margin-right: 10px;
}

.logo span {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-cta {
  margin-left: 1rem;
}

/* Hero Section */
.hero {
  padding-top: calc(5rem + 70px);
  background-color: var(--white);
}

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

.hero-content {
  padding-right: 2rem;
}

.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.hero-visual svg {
  max-height: 400px;
}

/* Accommodations Section */
.accommodations {
  background-color: var(--gray-light);
}

.accommodation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.accommodation-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-5px);
}

.accommodation-content {
  padding: 1.5rem;
}

.accommodation-icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Activities Section */
.activities {
  background-color: var(--white);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--gray-light);
  transition: all 0.3s ease;
}

.activity-item:hover {
  box-shadow: var(--box-shadow);
  background-color: var(--white);
}

.activity-icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Amenities Section */
.amenities {
  background-color: var(--gray-light);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.amenity-icon {
  margin-right: 10px;
  color: var(--primary-color);
}

/* News & Entertainment Section */
.news {
  background-color: var(--white);
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news-column h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.news-links li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-medium);
}

.news-links li:last-child {
  border-bottom: none;
}

.news-links a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--gray-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: 150px;
}

/* Footer */
.footer {
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.footer-brand span {
  margin-left: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--white);
  opacity: 0.8;
}

.footer-column a:hover {
  color: var(--gray-light);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

.footer-favicon {
  display: flex;
  align-items: center;
}

.footer-favicon img {
  margin-left: 0.5rem;
  width: 30px;
  height: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container, 
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding-right: 0;
    order: 1;
  }
  
  .hero-visual {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .nav-toggle-label {
    display: block;
    position: relative;
    height: 24px;
    width: 30px;
  }
  
  .nav-toggle-label span, 
  .nav-toggle-label span::before, 
  .nav-toggle-label span::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-toggle-label span::before {
    content: '';
    top: -8px;
  }
  
  .nav-toggle-label span::after {
    content: '';
    bottom: -8px;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .nav-toggle:checked ~ nav {
    max-height: 500px;
  }
  
  .nav-links {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .nav-links li {
    margin: 0.5rem 0;
  }
  
  .nav-cta {
    margin: 1rem 0 0 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .accommodation-types,
  .activity-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}
