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

:root {
  /* Base font-size for rem calculations */
  font-size: 16px;
}

header {
  background-color: #2e7d32;
  padding: 1rem;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

#title-2 {
  margin-bottom: 6rem;
}

#title-3 {
  text-align: center;
  margin-bottom: 6rem;
}

#title-4{
  text-align: center;
  margin-bottom: 6rem;
  font-size: 4rem;
}



#btn {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 2rem 0rem 2rem 0rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

section {
  padding: 2rem;
  background-color: white;
  margin: 1rem;
  border-radius: 0.5rem;
}

.hero {
  background: linear-gradient(to bottom right, rgba(200, 230, 201, 0.9), rgba(129, 199, 132, 0.9)),
  url('../img/hero-image.jpg');
  background-size: cover;
  background-position: center;
  margin: 0rem;
  border-radius: 0;
  text-align: center;
  color: #2e7d32;
}

#about{
  margin: 0rem;
  padding-bottom: 15rem;
  border-radius: 0rem;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-image img{
  width: 44rem;
  height:25rem;
}

.about-btn{
  margin-top: -15rem;
  width: 10rem;
}

#services {
  margin: 0rem;
  border-radius: 0rem;
}

.services-grid {
  display: flex;
  gap: 1rem;
}


.image {
  flex: 1;
  background-color: #e0e0e0;
  height: 18.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.image img{
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
}

/* Hours & Location section */
.hours-location {
  margin-top: 6rem;
}

.hours-location h3 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hours-location .hours,
.hours-location .location {
  background-color: #fafafa;
  padding: 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0,0,0,0.05);
}

.hours-location h4 {
  margin-top: 0;
}

.hours-location ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0 0;
}

.map-image {
  margin-top: 0.5rem;
  height: 8.75rem;
  background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-weight: bold;
  border-radius: 0.25rem;
}



  /* about page */
  .about-heading{
    text-align: center;
    font-weight: 600;
    font-size: xxx-large;
    margin: 10px;

  }
  
  #aboutPage {
  display: flex;
  align-items: center;
    padding: 3rem;
}
/* about page: mission */


.about-title-1 {
  flex: 2;
  margin: 0;
  font-weight: bolder;
  font-size: 45px;
  text-align: left;
  padding-left: 30px;
}

.about-description-1 {
  flex: 1;
  text-align: right;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 0 50px 0;
  margin:0 30px;  
  font-weight: 520;

}

/* about page: vision */
.about-title-2 {
  flex: 2;
  margin: 0;
  font-weight: bolder;
  font-size: 45px;
  padding-right: 75px;
  text-align: right;
}
.mission,.vision {
  border-top: 15px solid lightgray;
}
.vision{
  border-bottom: 15px solid lightgray;
}
.about-description-2 {
  flex: 1;
  text-align: left;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 520;
  margin:0 30px;  
} 
  .about-imgs{
    column-gap: 100px;
    width: 400px;
    margin: 0.;
    padding: 10px 0px;
  }
    .about-imgs img{
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    }
 


/* Contact section layout */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 0rem;
  height: 30rem;
  border-radius: 0rem;
  background: linear-gradient(to right, #c8e6c9, #a5d6a7);
  align-items: center;
}

.contact-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-left h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Contact form styles */
.contact-right form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: 600;
}

input, textarea {
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 0.0625rem solid #a5d6a7;
  border-radius: 0.3125rem;
  font-size: 1rem;
}

button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 0.3125rem;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #1b5e20;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #2e7d32;
  color: white;
}

/* Gallery*/
  .gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 9.375rem;
  column-gap: 15.625rem;
  max-width: 75rem;
    margin: auto;
  padding: 1.25rem 0;
  }
  
  .gallery img {
    width: 100%;
  max-width: 28.125rem;
  margin: 0 0;
  }
  
  .gallery::after {
    content: "";
  width: 21.875rem;
  }
  