/* ==============================
   Global Reset & Base Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'GE SS Two', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* ==============================
   Header
============================== */
header {
  background: #009344;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ==============================
   Hero Section
============================== */
.hero {
  background: url("../images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 10px 20px;
  background: #f7931d;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #e98300;
}

/* ==============================
   Sections (About, Services, etc.)
============================== */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  color: #009344;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
  color: #555;
}

/* ==============================
   Services Grid
============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #f7931d;
}

/* ==============================
   Buttons
============================== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #009344;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #007a36;
}

/* ==============================
   Footer
============================== */
footer {
  background: #4A4A4A;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

footer a {
  color: #f7931d;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* ===== Footer ===== */
.site-footer {
  background: var(--green);
  color: #fff;
  padding: 30px 20px;
}
.footer-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: start;
}
.footer-about h3,
.footer-container h4 {
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 6px 0;
}
.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 12px;
  margin-top: 18px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* ===== Blog Page ===== */
.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #f9f9f9;
}
.page-header h1 {
  font-size: 2.2rem;
  color: var(--green);
}
.page-header p {
  color: #555;
  margin-top: 8px;
}

.blog-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
}
.blog-post {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-post h3 {
  margin: 15px;
  color: var(--orange);
}
.blog-post p {
  margin: 0 15px 15px;
  color: #444;
  flex-grow: 1;
}
.blog-post a {
  margin: 0 15px 15px;
  align-self: flex-start;
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
}
.blog-post a:hover {
  text-decoration: underline;
}
/* ===== Blog Post Page ===== */
.post-header {
  text-align: center;
  padding: 50px 20px 20px;
  background: #f9f9f9;
}
.post-header h1 {
  font-size: 2rem;
  color: var(--green);
}
.post-meta {
  color: #777;
  font-size: 14px;
}

.post-content {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  line-height: 1.7;
  font-size: 16px;
}
.post-content img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}
.post-content p {
  margin-bottom: 18px;
  color: #333;
}
