body {
  margin: 0;
  font-family: Arial, sans-serif;
}


.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 2rem;
  background: white;
  z-index: 50;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.navbar__brand img {
  display: block;
  height: 90px;
  width: auto;
}

.navbar a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.navbar a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 70vh;
  background-color: #f2f2f2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  overflow: hidden;
  padding: 4rem;
}

.hero h1 {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 110px;
  margin: 0;
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  text-align: left;
  max-width: 400px;
  line-height: 0.9;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  border-radius: 0;
  background-color: transparent;
}

.pull-quote {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-top: 2px solid #008a3b;
  padding-top: 2rem;
}
.pull-quote blockquote {
  margin: 0;
  font-size: 2.0rem;
  color: #222;
  font-family: "Special Gothic Expanded One", sans-serif; 
  font-weight: 500;
  font-style: normal;
}

.pull-quote__cite {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #008a3b;
  font-family: "Outfit", sans-serif;
}

.main-content {
  max-width: 1600px;
  margin: 1rem auto;
  padding: 1rem;
  border-bottom: 2px solid #008a3b;
  padding-bottom: 2rem;
  margin-bottom: 2rem;

}

.main-content p {
  margin: 0;
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

.paragraph-container {
  max-width: 1530px;
  margin: 4rem auto 2rem auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 2rem;
  align-items: start;
}

.glen-section,
.chioopee-section {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glen-section h2,
.chioopee-section h2 {
  font-family: "Special Gothic Expanded One", sans-serif; 
  font-weight: 700;
  font-size: 3.00rem;
  margin-bottom: 1rem;
  border-bottom: #008a3b 3px solid;
  width: fit-content;
}

.chioopee-section h2 {
  margin-top: -1rem;
}

.glen-section p,
.chioopee-section p {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  background-color: #f9f9f9;
}

.glen-section p {
  margin-bottom: 3rem;
}

.chioopee-section p {
  margin-bottom: 2rem;
}

.chioopee-section .paragraph-image {
   margin-top: 7rem;
}


.glen-section .paragraph-image,
.chioopee-section .paragraph-image {
  width: 100%;
  max-width: 100%;
  height: 530px; 
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 5px;
  border: #008a3b 3px;
}
.site-footer {
  background-color: #008a3b;
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  font-family: "Outfit", sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/*mobile styled*/ 
@media (max-width: 768px) {

  .navbar {
    padding: 5px 1rem;
  }
  
  .navbar__brand img {
    height: 60px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px; 
  }

  .hero { 
    height: 50vh;
    padding: 2rem 1rem;
  }

  .hero h1{ 
    font-size: 50px;
    max-width: 100%;
    line-height: 1;
  }

  .pull-quote {
    max-width: 90%;
    padding: 1rem;
  }

  .pull-quote blockquote {
    font-size: 1.5rem;
  }

  .main-content {
    max-width: 100%;
    padding: 1rem;
  }

  .main-content p {
    font-size: 1.2rem;
  }
  
  .paragraph-container {
    gap: 0rem;
    grid-template-columns: 1fr;
    margin: 2rem auto; 
  }

  .glen-section,
  .chioopee-section {
    padding: 1rem;
  }

  .glen-section h2,
  .chioopee-section h2 { 
    font-size: 2rem;
  }

  .glen-section .paragraph-image,
  .chioopee-section .paragraph-image { 
    height: 300px;
  }

  .chioopee-section .paragraph-image {
    margin-top: 0;
  }
}
