/* Cooper Jester 10/09-12/25*/

/* Reset / Base styles */
body {
  margin: 0;
  color: #333;
  background-color: #2c2c2c;
  line-height: 1.6;
  text-align: center;
}

/* Hero Banner */
.hero {
  position: relative;
  height: 50vh; /* Half screen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay box for text */
.overlay {
  background-color: rgba(0, 0, 0, 0.55); /* dark overlay for contrast */
  color: white;
  padding: 40px 60px;
  border-radius: 12px;
  max-width: 600px;
}

/* Main heading */
.overlay h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Button link */
.button {
  display: inline-block;
  background-color: #6b8e23;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  margin-top: 20px;
}

.button:hover {
  background-color: #557a1f;
}

/* About Section */
.about {
  max-width: 700px;
  margin: 60px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.about h2 {
  color: #6b8e23;
}

/* Footer */
footer {
  background-color: #6b8e23;
  color: white;
  padding: 12px;
  margin-top: 50px;
}