@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --Golden-black: hsl(40, 6%, 9%);

  --Gold: #c9a24a;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  background-color: var(--Golden-black);

  background-size: 90%;
  background-position: 50%;
  background-position-y: 5rem;

  overflow-x: hidden;
}
.topstuff {
  padding-right: 3rem;
  padding-top: 1rem;
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.3rem;
}

.infotab {
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: space-evenly;

  min-width: 350px;
}

.infotab a {
  text-decoration: none;
  color: white;
  display: inline-block;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.infotab a:hover {
  transform: scale(1.1);
  color: beige;
  text-decoration: underline;
}
.Header {
  padding-left: 2.5rem;
}
.title {
  color: white;
  font-size: 2rem;
}

.intro {
  padding-top: 10rem;

  width: 90%;
  max-width: 90%;
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 3rem;
  font-size: 70px;
  flex-wrap: wrap;
  color: wheat;
}
.s {
  animation: starttext forwards;
  animation-duration: 2s;
  opacity: 0;
}
.f {
  animation: starttext forwards;
  animation-duration: 2s;
  animation-delay: 1.5s;
  opacity: 0;
}
.d {
  animation: starttext forwards;
  animation-duration: 2s;
  animation-delay: 3s;
  opacity: 0;
}
.r {
  animation: starttext forwards;
  animation-duration: 2s;
  animation-delay: 4.5s;
  opacity: 0;
}
.r {
  font-size: 100px;
  animation: starttext forwards;
  animation-duration: 2s;
  position: relative;
  bottom: 2.5rem;
  animation-delay: 6s;
  color: rgb(255, 248, 235);
  opacity: 0;
}

.introtext {
  font-size: 30px;
  display: flex;
  width: 90%;
  max-width: 90%;
  justify-self: center;
  justify-content: center;
  color: rgb(235, 231, 221);
  padding-top: 3rem;
}

.p1buttons {
  scale: 1.5;
  width: 100%;
  max-width: 700px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  margin: 3.5rem auto 0;
}

.p1buttons a {
  text-decoration: none;
  color: rgb(28, 24, 14);
  transition: color 0.3s ease;
}

.p1buttons a:hover {
  color: rgb(65, 65, 63);
}
.Wwu,
.Xos {
  background: rgb(135, 121, 81);
  border-radius: 14px;

  padding: 0.9rem 1.5rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.Wwu:hover,
.Xos:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.meet {
  display: flex;
  justify-self: center;
  font-size: 100px;
  color: white;
  padding-top: 10rem;
}
.foundimg {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  display: flex;
  justify-self: center;
  margin-top: 10rem;

  animation: sizeupscreen forwards;
  animation-timeline: view();
  animation-range: entry 20% cover 80%;

  transform-origin: center center;
}

@keyframes sizeupscreen {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes starttext {
  0% {
    opacity: 0%;
    transform: translateY(20px);
  }
  10% {
    opacity: 0%;
    transform: translateY(20px);
  }
  100% {
    opacity: 100%;
    transform: translateY(0);
  }
}

.foundexp {
  display: flex;
  justify-self: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  flex-wrap: wrap;
  max-width: 90%;
}

.foundexp p {
  padding-top: 5rem;

  animation: sizeupscreen forwards;
  animation-timeline: view();
  animation-range: entry 50% cover 80%;

  transform-origin: center center;
}

.mainhook {
  font-size: 150px;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  color: beige;
}

.page2 p {
  display: flex;
  justify-self: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  flex-wrap: wrap;
  max-width: 90%;

  padding-top: 5rem;

  animation: sizeupscreen forwards;
  animation-timeline: view();
  animation-range: entry 50% cover 80%;

  transform-origin: center center;
}

.minicards {
  padding-top: 2rem;

  display: flex;
  justify-content: space-evenly;
}
.card {
  color: white;
  background-color: rgba(0, 0, 0, 0.42);
  margin-bottom: 70px;
  border-radius: 15px;
  min-width: 20rem;
  max-width: 20rem;
  min-height: 15rem;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  opacity: 0;
  transform: scale(1) translateY(70px);
}

.card.animate {
  animation: bigtosml 0.8s ease forwards;
}

.titlc {
  font-size: 35px;
  padding-top: 2rem;
  max-width: 80%;
  color: rgb(255, 255, 230);
}
.parac {
  font-size: 20px;
  max-width: 80%;
}

@keyframes bigtosml {
  0% {
    opacity: 0;
    transform: scale(1) translateY(70px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(300px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.who-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  padding-top: 2rem;
}

.who-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.who-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: #c9a24a;
}

.who-list {
  list-style: none;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.who-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: white;

  padding: 1.2rem;
  border-radius: 12px;

  font-size: 1.2rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.who-list li:hover {
  transform: translateY(-5px);
  background: rgba(201, 162, 74, 0.15);
}
