/* The Gathering Grounds - Rustic & Organic Nature Theme */

:root {
  --forest-green: #2d5016;
  --moss-green: #5a7c3e;
  --sage-green: #9db88a;
  --warm-brown: #6b4423;
  --bark-brown: #4a3426;
  --earth-brown: #8b6f47;
  --cream: #f5f1e8;
  --light-sage: #d4e5c9;
  --deep-forest: #1a3a0f;
}

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

body {
  font-family: 'Georgia', 'Palatino', serif;
  background-color: var(--cream);
  color: var(--bark-brown);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss-green) 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--warm-brown);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.logo::before {
  content: "🌿 ";
}

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

nav ul li a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 101;
  position: absolute;
  left: -9999px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--cream);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(29, 58, 15, 0.6), rgba(45, 80, 22, 0.7)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%235a7c3e" width="1200" height="600"/><path fill="%232d5016" opacity="0.3" d="M0 300 Q300 200 600 300 T1200 300 V600 H0 Z"/><circle fill="%239db88a" opacity="0.2" cx="200" cy="150" r="80"/><circle fill="%239db88a" opacity="0.2" cx="900" cy="200" r="100"/></svg>') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border-bottom: 5px solid var(--earth-brown);
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-weight: normal;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.4rem;
  color: var(--light-sage);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Section Styling */
section {
  margin-bottom: 4rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--moss-green), transparent);
}

h3 {
  font-size: 1.8rem;
  color: var(--moss-green);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--bark-brown);
}

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

.card {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-sage) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--sage-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 184, 138, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

.card h3 {
  color: var(--forest-green);
  margin-top: 0;
  font-size: 1.6rem;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Event Items */
.event-item {
  background: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--moss-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.event-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.15);
}

.event-date {
  display: inline-block;
  background: var(--forest-green);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.event-item h3 {
  margin-top: 0.5rem;
  color: var(--moss-green);
}

/* Contact Section */
.contact-info {
  background: linear-gradient(135deg, var(--light-sage) 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--sage-green);
  max-width: 600px;
  margin: 2rem auto;
}

.contact-info h3 {
  margin-top: 0;
  color: var(--forest-green);
  text-align: center;
}

.contact-info p {
  margin: 1rem 0;
  font-size: 1.15rem;
}

.contact-info strong {
  color: var(--forest-green);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--forest-green) 100%);
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 3px solid var(--warm-brown);
}

footer p {
  color: var(--light-sage);
  margin: 0;
}

/* Nature decorative elements */
.nature-accent {
  position: relative;
  padding-top: 2rem;
}

.nature-accent::before {
  content: "🌿 🍃 🌿";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
    left: auto;
    padding: 0.5rem;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss-green) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    margin: 0;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 2rem 1rem;
  }
}

/* Texture overlay for rustic feel */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 68, 35, 0.02) 2px, rgba(107, 68, 35, 0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 68, 35, 0.02) 2px, rgba(107, 68, 35, 0.02) 4px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}
