/* ===== GENERAL LAYOUT ===== */
body {
    margin: 0;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    background-color: #e7dfd4;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}  
.blurb-content {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 40px;
}

.text {
  flex: 1;
  min-width: 0;
}

.blurb-image {
  width: 40%;
  max-width: 500px;
  height: auto;
}

/* ===== NAVBAR ===== */
nav {
    background-color: #2e7d32;   /* green bar */
    padding: 15px 0;
}

nav ul {
    list-style: none;            /* remove bullets */
    margin: 0;
    padding: 0;
    display: flex;               /* horizontal layout */
    justify-content: center;     /* center items */
    gap: 30px;                   /* spacing */
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
}

/* hover effect */
nav ul li a:hover {
    text-decoration: underline;
    color: #c8e6c9;
}

/* ===== TEXT STYLES ===== */
h1 {
    font-size: 3em;
}

p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: #999;
}

a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid #d5d5d5;
    font-size: 0.8em;
    margin-top: 40px;
    padding-top: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

/* ===== BLOG POSTS ===== */
ul.posts { 
    margin: 20px auto 40px; 
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
/* ===== STATS ===== */
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #2e7d32;
  padding: 60px 40px;
  text-align: center;
}

.stat {
  padding: 10px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.stat:last-child {
  border-right: none;
}

.stat h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
}

.stat p {
  font-size: 18px;
  margin-bottom: 25px;
}

.stat img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 20px;
}
