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: 60vh; /* 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:40px;    /* space from the bottom edge */
  padding-left: 10px; /* space from left edge */
  text-align: left;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between; /* left + right */
  align-items: flex-end;          /* align both at the bottom */
  padding: 0 40px 60cpx 40px;      /* left, right, and bottom spacing */
}


.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;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;   /* stack the links */
    gap: 10px;                /* space between items */
    padding: 20px 0;
  }

  nav ul li a {
    font-size: 1.2rem;        /* make links easier to tap */
  }
}
