/* NAVIGATION */
.main-header {
  padding: 2rem 4rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clan-logo {
  width: 12rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.nav-links:link,
.nav-links:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.nav-links:hover,
.nav-links:active {
  color: #82c91e;
}

/* HERO */
.hero-section {
  text-align: center;
  padding: 20rem 2rem;
  height: 90vh;
  background-image: linear-gradient(
      to bottom,
      rgba(36, 36, 36, 0.6),
      rgba(36, 36, 36, 0.9)
    ),
    url(../img/backgrounds/hero.jpg);
  background-size: cover;
  color: #fff;
}

.hero {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.hero-description {
  font-size: 4rem;
  line-height: 1.6;
  letter-spacing: 0.75px;
}

.btn-hero:link,
.btn-hero:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.75px;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background-color: #fff;
  color: #82c91e;
  transition: all 0.3s;
}

.btn-hero:hover,
.btn-hero:active {
  background-color: #82c91e;
  color: #fff;
}

/* ABOUT US */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-text {
  font-size: 2.4rem;
  letter-spacing: 0.75px;
}

.about-text:not(:last-child) {
  margin-bottom: 4rem;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  justify-self: end;
}

/* TEAMMATES */
.teammates-profiles {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 12rem;
  row-gap: 6rem;
}

.teammate {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.teammate:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.profiles img {
  width: 100%;
}

.teammate-stats-box {
  padding: 1.6rem 3.6rem 2.4rem 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.teammate-name {
  font-size: 2.8rem;
  padding: 1.2rem 0;
  letter-spacing: 0.75px;
  text-align: center;
}

.teammate-subheading {
  font-size: 2rem;
  color: #82c91e;
  letter-spacing: 0.5px;
}

.teammate-pref {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.teammate-pref li {
  font-size: 1.5rem;
  color: #333;
}

.teammate-pref li:last-child {
  padding-bottom: 1.2rem;
}

/* FOOTER */
footer {
  border-top: 1.5px solid #eee;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin: 100px 200px;
}

.left-footer,
.right-footer {
  text-align: center;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #aaa;
  transition: all 0.3s;
}

.social-icon:hover,
.social-icon:active {
  transform: translateY(-0.5rem);
}

.icon-box {
  display: flex;
  column-gap: 1rem;
}

.email-address {
  font-size: 16px;
  color: #aaa;
}
