@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu2:wght@700&display=swap');

:root {
  --lightgold: rgb(232, 176, 31);
  --black: rgb(30, 24, 32);
  --darkgold: rgb(143, 103, 8);
  --gray: rgb(182, 182, 182);
  --darkgray: rgb(146, 146, 146);
  --ubuntu: 'Ubuntu', sans-serif;
  --robotic: 'Zen Dots', cursive;
  --extradarkgray: rgb(45, 47, 53);
}
body {
  margin: 0;
  background-color: var(--black);
  font-family: var(--ubuntu);
  padding: 0;
}

/* Header Navbar */
.header-navbar {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
  color: var(--lightgold);
}
.brand-title img {
  width: 60px;
  margin-left: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar-links li {
  list-style: none;
  padding: 0px 25px;
  display: block;
  position: relative;
}
.navbar-links li a {
  text-decoration: none;
  color: var(--lightgold);
  font-family: var(--robotic);
  font-size: 16px;
}
.navbar-links ul li::after {
  content: '';
  width: 0%;
  height: 3px;
  border-radius: 1px;
  background-color: var(--lightgold);
  display: block;
  margin: auto;
  transition: all 0.5s ease-out 0s;
}
.navbar-links ul li:hover::after {
  width: 100%;
}
.join-us-button {
  display: flex;
  margin-right: 50px;
}
.join-us-button button {
  border: none;
  background-color: var(--lightgold);
  color: var(--black);
  padding: 8px 25px;
  font-family: var(--robotic);
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.join-us-button button:hover {
  background-color: var(--darkgold);
  color: white;
}
.toggle-button {
  position: absolute;
  top: 35px;
  right: 50px;
  display: none;
  flex-direction: column;
  color: var(--lightgold);
  font-size: 30px;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .toggle-button {
    display: flex;
  }
  .navbar-links {
    display: none;
    width: 100%;
  }
  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }
  .navbar-links ul li {
    text-align: center;
    padding-bottom: 25px;
  }
  .navbar-links ul li a {
    padding: 25px 25px;
  }
  .navbar-links.active {
    display: flex;
  }
  .join-us-button {
    display: none;
  }
}

/* Header */
.header {
  background: url(robobg4.png);
}
.text-box {
  padding-top: 100px;
  padding-bottom: 250px;
  display: flex;
  flex-direction: column;
}
.text-box h1 {
  font-family: var(--robotic);
  font-size: 60px;
  color: var(--black);
  text-align: center;
}
.text-box p {
  font-size: 18px;
  color: var(--darkgold);
  text-align: center;
}
.text-box .fa-solid {
  color: var(--darkgold);
  font-size: 18px;
  transition: all 0.3 ease;
}
.text-box .fa-solid:hover {
  color: var(--black);
}
@media (max-width: 1024px) {
  .text-box {
    padding-bottom: 350px;
  }
  .text-box h1 {
    font-size: 36px;
  }
  .text-box p {
    font-size: 12px;
  }
  .text-box .fa-solid {
    font-size: 12px;
  }
}

/* Info */
.info {
  width: 100%;
  margin: auto;
  background-color: var(--black);
  padding-top: 75px;
}
.introduction {
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text {
  float: left;
  margin-right: 50px;
  width: 40%;
}
.text p {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}
.image {
  float: right;
  margin-left: 50px;
}
.image img {
  width: auto;
  height: 350px;
  object-fit: cover;
  border: none;
  border-radius: 25px;
  box-shadow: 15px 18px 20px var(--extradarkgray);
}
.space {
  height: 75px;
}
.space-between {
  height: 75px;
}
.mission {
  background-color: var(--lightgold);
  margin-left: 200px;
  margin-right: 200px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 15px 18px 20px var(--extradarkgray);
}
.mission .mission-icon {
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.mission .mission-icon i {
  font-size: 48px;
  color: var(--black);
  margin: 0;
}
.mission .mission-statement {
  padding-left: 50px;
  padding-bottom: 50px;
  padding-right: 50px;
}
.mission .mission-statement h1 {
  margin-top: 0;
  padding-top: 25px;
  font-size: 36px;
  font-family: var(--robotic);
  color: var(--black);
}
.mission .mission-statement p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}
.subteams-container {
  background: var(--lightgold);
  display: flex;
  justify-content: space-evenly;
  padding-left: 25px;
  padding-right: 25px;
}
.bg-space {
  height: 50px;
  background-image: url(robobg1.png);
}
.subteam-container {
  width: 300px;
}
.subteam-container .subteam {
  background-color: var(--black);
  border-radius: 25px;
  margin-top: 25px;
  box-shadow: 10px 12px 12px var(--darkgold);
}
.subteam-container .subteam-image img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: 25px 25px 0 0;
}
.subteam-container .subteam-icon i {
  color: var(--lightgold);
  font-size: 36px;
  padding-top: 30px;
}
.subteam-container .subteam-info {
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
}
.subteam-container .subteam-info h1 {
  font-size: 18px;
  font-family: var(--robotic);
  color: var(--lightgold);
}
.subteam-container .subteam-info p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  padding-bottom: 25px;
}
.leadership-title {
  text-align: center;
}
.leadership-title h1 {
  color: var(--lightgold);
  margin: 0;
  padding-bottom: 10px;
  font-family: var(--robotic);
  font-size: 36px;
}
.leadership-title p {
  color: var(--darkgray);
  margin: 0;
  padding-bottom: 50px;
  font-size: 22px;
}
.leadership-container {
  padding-left: 150px;
  padding-right: 150px;
}
.leadership {
  display: flex;
  justify-content: space-evenly;
}
.leadership .leader {
  width: 20%;
}
.leader .leader-image img {
  border-radius: 50%;
  width: 175px;
  height: 175px;
  object-fit: cover;
}
.leader .leader-info {
  text-align: center;
}
.leader .leader-info h1 {
  margin: 0;
  color: var(--lightgold);
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
.leader .leader-info p {
  color: var(--lightgold);
  margin: 0;
  font-size: 14px;
}
.space2 {
  height: 75px;
  background: url(robobg3.png);
}
@media (max-width: 1024px) {
  .info {
    padding-top: 25px;
  }
  .introduction {
    flex-direction: column;
    margin-left: 50px;
    margin-right: 50px;
  }
  .text {
    margin-right: 0;
    width: 100%;
  }
  .text p {
    font-size: 12px;
  }
  .image {
    padding-top: 25px;
    margin-left: 50px;
    margin-right: 50px;
    float: none;
  }
  .image img {
    height: 175px;
  }
  .mission {
    margin-left: 50px;
    margin-right: 50px;
  }
  .mission .mission-icon i {
    font-size: 36px;
  }
  .mission .mission-statement h1 {
    font-size: 24px;
  }
  .mission .mission-statement p {
    font-size: 12px;
  }
  .subteams-container {
    flex-direction: column;
    justify-content: center;
  }
  .subteam-container {
    width: 100%;
  }
  .subteam-container .subteam-image img {
    width: 100%;
    height: 150px;
  }
  .subteam-container .subteam-icon i {
    font-size: 24px;
  }
  .subteam-container .subteam-info h1 {
    font-size: 14px;
  }
  .subteam-container .subteam-info h1 {
    font-size: 10px;
  }
  .leadership-title {
    text-align: center;
  }
  .leadership-title h1 {
    font-size: 24px;
  }
  .leadership-title p {
    font-size: 16px;
  }
  .leadership-container {
    padding-left: 100px;
    padding-right: 100px;
  }
  .leadership {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .leadership .leader {
    width: 100%;
    padding-bottom: 25px;
  }
  .leader .leader-info h1 {
    font-size: 12px;
  }
  .leader .leader-info p {
    font-size: 10px;
  }
  .space-between {
    height: 0;
  }
}

/* Footer */
.footer {
  width: 100%;
  margin: auto;
  background-image: url(robobgfinal.png);
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding-top: 50px;
}
.textbox {
  background-color: var(--black);
  margin-left: 200px;
  margin-right: 200px;
  text-align: center;
}
.textbox button {
  font-family: var(--robotic);
  background-color: var(--lightgold);
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
  color: var(--black);
}
.textbox button:hover {
  background-color: var(--darkgold);
  color: white;
}
.textbox p {
  font-size: 14px;
  font-family: var(--ubuntu);
  color: var(--gray);
  line-height: 1.5;
  padding-bottom: 5px;
}
.textbox a {
  color: lightblue;
  font-size: 14px;
  font-family: var(--ubuntu);
  line-height: 1.5;
}
.textbox a:hover {
  color: var(--darkgold);
  transition: color 0.3s ease-in 0s;
}
.socials {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}
.socials .fa-brands {
  color: var(--lightgold);
  margin-left: 10px;
  margin-right: 10px;
  font-size: 30px;
  cursor: pointer;
  padding-bottom: 50px;
}
.socials .fa-solid {
  color: var(--lightgold);
  margin-left: 10px;
  margin-right: 10px;
  font-size: 28px;
  cursor: pointer;
}
.socials .fa-solid:hover {
  color: var(--darkgold);
  transition: color 0.3s ease-in 0s;
}
.socials .fa-brands:hover {
  color: var(--darkgold);
  transition: color 0.3s ease-in 0s;
}
@media (max-width: 1024px) {
  .textbox {
    margin-right: 75px;
    margin-left: 75px;
  }
  .textbox p {
    font-size: 10px;
  }
  .textbox a {
    font-size: 10px;
  }
  .textbox button {
    font-size: 10px;
  }
  .socials .fa-solid {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
  }
  .socials .fa-brands {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
  }
}