#container {
    width: 950px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background-color: #E9DCBE;
    color: #1b1b1b;
    letter-spacing: 0px;
}

/* Header */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f0e7;
  padding: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  width: 40px;
}

.logo-container h1 {
  font-family: 'Koulen', sans-serif;
  font-size: 1.5rem;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #1b1b1b;
  font-weight: bold;
  font-size: 0.9rem;
}

a:hover {
    color: #86624D;
}


/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}


.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Koulen', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0px;
}
h1, h2 , h3{
    letter-spacing: 2px;
}



.hero-text p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 4.5rem;
    text-align: center;
}

.buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

button {
  background-color: #4d4f2f;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Content Sections */
.what-we-do, .testimonials, .get-involved {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #F4F0E7;
}

.what-we-do h2,
.testimonials h2,
.get-involved h2 {
  font-family: 'Koulen', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.what-we-do ul {
    list-style: none;
    margin-top: 25px;
}
.what-we-do ul li {
    margin-top: 10px;
}


.what-we-do li::before {
  content: "★ ";
  color: #1b1b1b;
}

/* Testimonials */
.testimonial1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}
.testimonials  p {
    width: 250px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    text-align: center;
}



 .testimonial2 {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    
    }

.testimonial img {
  width: 100px;
  margin-bottom: 1rem;
}

/* Involvement */
.get-involved {
  background-color: #656640;
  color: white;
}

.involvement-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.option {
  background-color: #3c4121;
  padding: 1rem;
}

.option h3 {
    font-family: 'Koulen', sans-serif;
    letter-spacing: 2px;
}

.option button {
  margin-top: 1rem;
}

/* FORMS SECTION */
.forms-section {
  padding: 2rem 1rem;
  background-color: #3c4121;
  color: white;
  text-align: center;
}

.forms-section h2 {
  font-family: 'Koulen', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.form-grouping {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-block {
  background-color: #656640;
  padding: 1rem;
  border-radius: 6px;
}

.form-block h3 {
  font-family: 'Koulen', sans-serif;
  margin-bottom: 0.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.form-block form textarea {
	font-family: system-ui, sans-serif;
}

input, textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  margin-top: 0.5rem;
  background-color: #4d4f2f;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #3a3c25;
}

@media (min-width: 950px) {
  .form-grouping {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-block {
    width: 30%;
  }
}

/* Footer */
footer {
  background-color: #f4f0e7;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 1rem;
    margin-top: 10px;
}
footer .footer-contact h4 {
    margin-bottom: 15px;
}

.footer-contact, .footer-nav {
  margin-top: 1rem;
}

.footer-nav a {
  color: #1b1b1b;
  text-decoration: none;
  margin: 0.2rem 0;
}


/* ------------------- Desktop Adjustments ------------------- */
@media (min-width: 950px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    margin-top: 0;
  }

  .hero {
    height: 600px;
  }

  .hero img {
    height: 100%;
    object-fit: cover;
  }

  .hero-text {
    top: 40%;
    left: 10%;
    max-width: 40%;
  }

  .buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonial1 {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    display: flex;
  }
	
 .testimonial2 {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    display: flex;
    }

  .testimonial:nth-child(2) {
    flex-direction: row-reverse;
  }

  .involvement-options {
    flex-direction: row;
    justify-content: space-around;
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 5%;
  }

  .footer-nav a {
    display: inline-block;
    margin: 0 1rem;
  }

  .footer-contact {
    text-align: left;
  }
}
