* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #FAF8F4;
  color: #3A2F2F;
  font-family: 'Inter', sans-serif;
}

.container {
  width: 1440px;
  margin: 0 auto;
  background-color: #FAF8F4;
}

.logo img {
  width: 155px;
}
.topnav {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
}

.main-nav {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #3A2F2F;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.main-nav .active {
  color: #C97B63;
}
.main-nav a:hover {
  color: #7A9E7E;
}

header {
  height: 550px;
  background-image: url("images/image1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  text-align: center;
  padding-bottom: 85px;
}

header h2,
.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FAF8F4;
  margin: 0 0 25px;
}

.button {
  display: inline-block;
  background-color: #C97B63;
  color: #FAF8F4;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 22px 58px;
  border-radius: 8px;
}

.about {
  height: 660px;
  background-color: #E6D8C3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 95px;
}

.about img {
  width: 560px;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
}

.about-text {
  width: 360px;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 45px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.35;
  text-align: justify;
  margin: 0 0 12px;
}

.info-band {
  height: 300px;
  background-color: #7A9E7E;
  color: #FAF8F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  position: relative;
}

.circle-icon {
  width: 210px;
  height: 160px;
  border-radius: 110px 110px 0 0;
  background-color: #7A9E7E;
  position: absolute;
  top: -90px;
  left: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon img {
  width: 90px;
  margin-top: 30px;
}

.info-band p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.location {
  text-align: right;
}

.features {
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 115px;
  text-align: center;

  margin-bottom: 80px;
}
.features img {
  width: 85px;
  height: 85px;
}

.features p {
  color: #C97B63;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.cta {
  height: 650px;
  background-image:
    linear-gradient(
      to bottom,
      rgba(250,248,244,0.95) 0%,
      rgba(250,248,244,0.75) 25%,
      rgba(250,248,244,0.5) 50%,
      rgba(250,248,244,0.75) 75%,
      rgba(250,248,244,0.95) 100%
    ),
    url("images/image2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-bottom: 60px solid #7A9E7E;
}

.cta h2 {
  color: #3A2F2F;
  margin-bottom: 30px;
}

.cta p {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 40px;
}

footer {
  height: 315px;
  background-image: url("images/footer.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 45px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 35px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 35px;
}

.socials img {
  width: 50px;
}

footer p {
  font-size: 12px;
}

/* ABOUT PAGE */

.contact-hero {
  min-height: 950px;
  background: linear-gradient(to bottom, #FAF8F4 0%, #E6D8C3 100%);
  padding: 80px 135px;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 65px;
}

.contact-top h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #3A2F2F;
  margin: 0;
}

.contact-location {
  text-align: right;
  margin-top: 25px;
}

.contact-location p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.contact-form {
  width: 650px;
  margin-left: 50px;
}

.contact-form label {
  display: block;
  font-size: 16px;
  color: #3A2F2F;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  background-color: #FAF8F4;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-form input {
  height: 55px;
}

.contact-form textarea {
  height: 250px;
  resize: none;
}

.button {
  display: inline-block;
  background-color: #C97B63;
  color: #FAF8F4;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 22px 58px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.contact-form .submit {
  width: auto;
}

.members-section {
  height: 420px;
  background-color: #FAF8F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 85px;
}

.members-list {
  width: 800px;
}

.members-list h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  text-transform: uppercase;
  color: #C97B63;
  margin: 0 0 40px;
}

.members-columns {
  display: flex;
  gap: 75px;
}

.members-columns div {
  width: 350px;
}

.members-columns p {
  font-size: 12px;
  line-height: 1.2;
  color: #3A2F2F;
  margin: 0 0 14px;
  
}
.members-columns a {
  color: #C97B63;
  font-size: 12px;
}

.members-columns strong {
  display: block;
}

.qr-code {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.green-divider {
  height: 70px;
  background-color: #7A9E7E;
}
