body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f8f4;
    color: #333;
}

header {
    background: #2c5f2d;
    color: #fff;
    padding: 15px;
    text-align: center;
}

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

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

footer {
    background: #2c5f2d;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.hero {
  position: relative;
  height: 40vh; /* adjust to taste */
  background: url('../images/cementcreek.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;   /* pushes text to bottom */
  justify-content: flex-start;
  padding-bottom:20px;    /* space from the bottom edge */
  padding-left: 10px; /* space from left edge */
  text-align: left;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* subtle readability boost */
}.hero-content h1 {
  margin-bottom: 10px; /* adjust this number for more or less space */
}



/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
}

.card p {
  padding: 0 15px;
  color: #555;
}
