/*
Theme Name: Green Wireframe Theme
Description: A clean green theme based on wireframe design
Version: 1.0
*/

:root {
  --primary-green: #2d5a27;
  --secondary-green: #4a7c59;
  --light-green: #7fb069;
  --accent-green: #a7c957;
  --background: #f8fffe;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border: #e0e0e0;
}

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

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

/* Header Image */
.header-image {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  display: block;
}

.header-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Header */
.site-header {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 0;
  border-bottom: 3px solid var(--secondary-green);
}

/* Navigation */
.main-navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.main-navigation a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.main-navigation a:hover {
  background-color: var(--secondary-green);
}

/* Main Content Area */
.site-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.content-area {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--accent-green);
}

/* Sidebar */
.sidebar {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: fit-content;
  border-left: 4px solid var(--light-green);
}

.sidebar h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-green);
  padding-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--secondary-green);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: auto; /* This pushes the footer to the bottom */
}

/* Responsive */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .site-content {
    grid-template-columns: 1fr;
  }
}
