/* style-40mini-1.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* Global reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header & Top Menu */
.site-header {
  background-color: #30633B;
  padding: 0.5rem 2rem;
}
.header-content {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.site-logo {
  height: 50px;
  margin-right: 1rem;
}
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.top-menu ul {
  display: flex;
  list-style: none;
}
.top-menu li + li {
  margin-left: 1.5rem;
}
.top-menu a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
}
.top-menu a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #e6f4ea;
  padding: 4rem 2rem;
  text-align: center;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #30633B;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.btn-primary {
  display: inline-block;
  background-color: #30633B;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
}
.btn-primary:hover {
  opacity: 0.9;
}

/* Layout: Sidebar + Content */
.layout {
  display: flex;
}
.side-nav {
  width: 200px;
  background-color: #f4f4f4;
  padding: 1rem;
}
.side-nav ul {
  list-style: none;
}
.side-nav li + li {
  margin-top: 0.75rem;
}
.side-nav a {
  text-decoration: none;
  color: #30633B;
  font-weight: 500;
}
.side-nav a:hover {
  text-decoration: underline;
}
.content {
  flex: 1;
  padding: 2rem;
}
.content a {
  color: #30633B;
  text-decoration: none;
  font-weight: 600;
}
.content a:hover {
  text-decoration: underline;
}
.content ul,
.content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.content li {
  margin: 0.5rem 0;
}

/* Blog Teaser */
.blog-teaser {
  background-color: #f9f9f9;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
}
.blog-teaser h3 {
  margin-bottom: 1rem;
  color: #30633B;
}
.teaser-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.teaser-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.teaser-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.teaser-card a {
  color: #30633B;
  text-decoration: none;
}
.teaser-card a:hover {
  text-decoration: underline;
}
.teaser-card p {
  font-size: 0.95rem;
  color: #555;
}
.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #30633B;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #30633B;
  border-radius: 0.25rem;
}
.btn-secondary:hover {
  background-color: #30633B;
  color: #fff;
}
