/* Universal styling */

* {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
}

/* Common styling */
.container {
  margin: 0 auto;
  max-width: 1440px;
  h1 {
    font-size: 64px;
    font-weight: 700;
    color: #131313;
  }
  h2 {
    font-size: 45px;
    font-weight: 700;
  }
  h3 {
    font-size: 64px;
    font-weight: 700;
  }
  h4 {
    font-size: 20px;
    font-weight: 600;
  }
  h5 {
    font-size: 25px;
    font-weight: 500;
  }
  p {
    font-size: 18px;
    font-weight: 400;
    color: #727272;
  }
  button {
    font-size: 20px;
    font-weight: 600;
    background-color: #ff900e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    margin-top: 24px;
    cursor: pointer;
  }
  button:hover {
    background-color: #ffffff;
    color: #ff900e;
    border: 2px solid #ff900e;
  }
}

/* Nav section styling */
.header {
  margin-top: 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  gap: 10px;
}
.main-logo {
  cursor: pointer;
}
.nav-links {
  align-content: center;
}
.nav-links ul {
  display: flex;
  gap: 40px;
}
.nav-links ul li {
  list-style: none;
}
.nav-links ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #424242;
  font-size: 24px;
  font-weight: 600;
}
.hero {
  margin-top: 80px;
  text-align: center;
}
.hero-content {
  max-width: 862px;
  margin: auto;
  padding: 0 10px;
}
.hero-content p {
  margin-top: 24px;
}
.hero img {
  margin-top: 48px;
  width: 100%;
  height: auto;
}

.quick-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 72px;
  margin: 0 32px;
  margin-top: 80px;
}
.quick-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quick-team img {
  width: 100%;
}
.quick-team img:hover {
  transform: scale3d(0.9, 0.9, 0.9);
  transition: all 1s;
  box-shadow: 5px 5px 5px #ff900e;
}
.span-gray {
  font-weight: 500;
  color: #727272;
}
.span-orange {
  color: #ff900e;
}
.quick-text p {
  margin-top: 24px;
}

/* Feature section styling */
.features-container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.features-title h2 {
  border-left: 5px solid #ff900e;
  padding-left: 20px;
}
.features-title p {
  margin-top: 24px;
}
.features-card {
  box-shadow: 1px 1px 1px 1px #c2c0c0;
  border-radius: 8px;
  margin-top: 20px;
  padding: 30px;
}
.features-card h4 {
  border-radius: 5px;
  padding: 5px;
  background: linear-gradient(white, lightgray);
}
.features-card p {
  margin-top: 10px;
}
.features-right {
  position: relative;
}
.features-right img {
  width: 100%;
  height: auto;
}
.experience-badge {
  background-color: #ff900e;
  color: #ffffff;
  text-align: center;
  width: fit-content;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 3px 3px #727272;
  position: absolute;
  left: -40px;
  bottom: -80px;
}
.experience-badge:hover {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: all 1s;
  box-shadow: 5px 5px 5px #727272;
}

.facts-container {
  margin-top: 124px;
}
.facts-title {
  max-width: 542px;
}
.facts-title p {
  margin-top: 24px;
}
.facts-card-container {
  margin: 0 64px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-evenly;
  gap: 124px;
}
.facts-card {
  border: 1px solid #ff900e;
  border-radius: 8px;
  text-align: center;
  padding: 46px 36px;
}
.facts-card:hover {
  transform: scale3d(1.2, 1.2, 1.2);
  transition: all 1s;
  box-shadow: 5px 5px 5px #ce6f03;
}
.facts-card h2 {
  color: #424242;
}

.sponsors-container {
  margin-top: 160px;
  text-align: center;
}
.sponsors-title p {
  margin-top: 24px;
}
.sponsors-logo {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}
.sponsors-logo img {
  max-width: 200px;
  height: auto;
  filter: grayscale(100%);
}
.sponsors-logo img:hover {
  filter: none;
  transition: all 1s;
  transform: scale(1.2, 1.2);
}
.footer {
  margin-top: 132px;
  text-align: center;
  margin-bottom: 48px;
  background-color: #fff4e7;
  padding: 40px;
  border-radius: 8px;
}
.footer p {
  color: #424242;
  font-size: 20px;
}
