@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.cdnfonts.com/css/satoshi");

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.events {
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  width: 60%;
  height: 100vh;
  background-color: #ffffff;
}

body {
  background-color: #ffffff;
  color: #041c44;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  user-select: none;
}

.intro {
  position: absolute;
  z-index: -20;
  width: 100%;
  height: 100vh;
  background-color: #041c44;
}

.intro-bg {
  position: absolute;
  z-index: -20;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: linear-gradient(#fdfdff, #f3faff);
  border-radius: 0px;
  animation: intro 1000ms cubic-bezier(0.17, 0.84, 0.44, 1) 1 forwards;
}

@keyframes intro {
  0% {
    filter: blur(30px);
    width: 0%;
    height: 0%;
    border-radius: 0px;
  }
  100% {
    filter: blur(0px);
    width: 100vw;
    height: 100vh;
    border-radius: 0px;
  }
}

@keyframes intro-nav {
  0% {
    transform: translate(-50%, 0%);
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    transform: translate(-50%, 50%);
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes intro-logo {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(25px);
  }
}

.intro-logo {
  filter: blur(0px);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  animation: intro-logo 1000ms cubic-bezier(0.6, 0.04, 0.98, 0.34) 1 forwards;
}

@keyframes intro-navblur {
  0% {
    backdrop-filter: blur(0px);
    opacity: 0;
  }
  100% {
    backdrop-filter: blur(5px);
    opacity: 1;
  }
}

.navbar-blur {
  opacity: 1;
  backdrop-filter: blur(5px);
  background-color: #fdfdffd7;
  height: 100px;
  width: 100%;
  z-index: 9998;
  /* animation: intro-navblur 1000ms cubic-bezier(0.17, 0.84, 0.44, 1) 1 forwards; */
  position: fixed;
}

.noanim {
  animation: 0s;
}

@keyframes upcoming-event {
  0% {
    transform: translateX(-5%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.upcoming-event-intro {
  height: 100%;
  animation: 0.4s upcoming-event cubic-bezier(0.08, 0.82, 0.17, 1);
}

.upcoming-event {
  box-shadow: 0px 0px 0px #0361a8;
  transition: 400ms cubic-bezier(0.08, 0.82, 0.12, 1.31);
}

.upcoming-event:hover {
  box-shadow: 0px 10px 0px #003e6d;
  transform: translateY(-10px);
}

.upcoming-event:active {
  box-shadow: 0px 0px 0px #003e6d;
  transform: translateY(0px);
}

.page-intro {
  transform: translateX(-50%);
  animation: 1s page-intro cubic-bezier(0.08, 0.82, 0.17, 1);
}

@keyframes page-intro {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.navbar {
  opacity: 1;
  z-index: 9999;
  filter: blur(0px);
  position: fixed;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  width: 85%;
  align-items: center;
  justify-content: space-between;
  /* animation: intro-nav 1000ms cubic-bezier(0.17, 0.84, 0.44, 1) 1 forwards; */
}

.navbar-noanim {
  opacity: 1;
  z-index: 9999;
  filter: blur(0px);
  position: fixed;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  width: 85%;
  align-items: center;
  justify-content: space-between;
}

.navbar-socials {
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: center;
}

.navbar-icon {
  display: flex;
  align-items: center;
}

.navbar-icon-text {
  display: grid;
  gap: 15px;
  grid-template-columns: 25px auto;
  font-size: 16px;
  align-items: center;
  cursor: pointer;
  transition: 50ms linear;
  padding: 10px;
  border-radius: 10px;
}

.navbar-text {
  gap: 15px;
  font-size: 16px;
  align-items: center;
  cursor: pointer;
  transition: 50ms linear;
  padding: 10px;
  border-radius: 10px;
}

.navbar-text:hover {
  transform: scale(1.05);
  background-color: #caddff41;
}

.navbar-icon-text:hover {
  transform: scale(1.05);
  background-color: #caddff41;
}

.front-page {
  display: flex;
  align-items: center;
  margin: auto;
  width: 85vw;
  height: 100vh;
}

.fp-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: clamp(1em, 5vw, 5em);
}

@keyframes fp-text {
  0% {
    transform: translate(-10%, 0%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}

body,
h1,
p,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: clamp(1.15em, 3em, 2.5em);
}

p {
  text-align: justify;
  font-size: clamp(1em, 1.5em, 1.5em);
}

.accent {
  color: #0575c9;
}

.fp-text-1 {
  width: 100%;
  opacity: 0;
  animation: fp-text 1000ms cubic-bezier(0.22, 0.61, 0.36, 1) 0s 1 forwards;
  font-family: "DM Sans", sans-serif;
}

.fp-text-2 {
  width: 100%;
  color: #0575c9;
  opacity: 0;
  animation: fp-text 1000ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s 1 forwards;
}

@keyframes throbber-intro {
  0% {
    filter: blur(10px);

    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.bg-container {
  filter: blur(0px);
  position: relative;
  opacity: 0;
  animation: throbber-intro 1000ms linear 0s 1 forwards;
}

.throbber-bg {
  position: absolute;
  z-index: -19;
  top: 0%;
  right: -10%;
  transform: rotate(-45deg);
  animation: throbber 100000ms linear infinite;
}

@keyframes throbber {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(315deg);
  }
}

.blinking-cursor {
  opacity: 0.4;
  display: inline-block;
  animation: blink 0.7s steps(1) infinite;
  color: #0575c9;
}

@keyframes blink {
  50% {
    opacity: 0.8;
  }
}

.who {
  position: relative;
  z-index: 600;
  background-color: #fdfdff;
  width: 100vw;
  padding: 100px 0px 100px 0px;
}

.what-grid {
  opacity: 0;
  background-color: #fdfdff;
  position: relative;
  margin: auto;
  /* left: 50%;
    top: 50%; */
  /* transform: translate(-50%, -50%); */
  width: clamp(50px, 85vw, 1400px);
  gap: 75px;
  align-items: center;
  display: grid;
  grid-template-columns: auto 45%;
}

.collage {
  width: 100%;
}

.what-vertical {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-rows: auto auto auto;
  gap: 30px;
  word-break: break-word;
  /* line-height: 35px; */
}

.what-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.what-stats-info {
  display: flex;
  flex-direction: column;
  gap: -50px;
  font-size: 1em;
}

.DM Sans {
  font-family: "DM Sans";
}

.what-info {
  /* transform: translateY(-180%); */
  font-family: "DM Sans";
}

@keyframes about-in {
  0% {
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.about-in {
  opacity: 0;
  filter: blur(5px);
  animation: about-in 1500ms cubic-bezier(0.22, 0.61, 0.36, 1) 1 forwards;
}

.membership {
  position: relative;
  z-index: 600;
  background-color: #0675c9;
  width: 100%;
  padding: 100px 0px 100px 0px;
}

.membership-container {
  margin: auto;
  max-width: clamp(50px, 85vw, 1400px);
}

.membership h1 {
  color: #a6d8ff;
}

.benefit-list {
  color: #fdfdff;
  display: flex;
  justify-content: space-between;
  gap: 75px;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* width: 300px; */
  width: 100%;
  text-align: left;
}

.benefits-info {
  /* transform: translateY(-100%); */
  font-family: "DM Sans";
}

.activate-button {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  width: fit-content;
  font-size: 1.3em;
  height: 35px;
  padding: 10px 15px 10px 15px;
  border-radius: 10px;
  align-items: center;
  color: #0575c9;
  background-color: white;
  transition: 250ms cubic-bezier(0.18, 0.89, 0.32, 1.27);
  box-shadow: 0px 0px 0px #0361a8;
  cursor: pointer;
}

.activate-button:hover {
  transform: translateY(-15%);
  box-shadow: 0px 8px 0px #0361a8;
}

.activate-button:active {
  transform: translateY(0%);
  box-shadow: 0px 0px 0px #0361a8;
  border-radius: 6px;
}

.activate-button-logo {
  width: 35px;
  height: 35px;
}

@keyframes more-info {
  0% {
    bottom: 15px;
    opacity: 0;
  }
  100% {
    bottom: 30px;
    opacity: 1;
  }
}

.fp-bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 85vw;
  font-size: 1.5em;
  bottom: -55px;
  opacity: 0;
  animation: more-info 1000ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s 1 forwards;
}

.sponsor {
  display: flex;
  gap: 10px;
  /* gap: 10px; */
  align-items: center;
  font-family: "DM Sans";
  font-weight: 600;
  opacity: 0.75;
  transition: 150ms linear;
  cursor: pointer;
}

.sponsor:hover {
  opacity: 0.5;
  cursor: pointer;
}

.more-info {
  font-family: "DM Sans";
  font-weight: 600;
  opacity: 0.75;
  transition: 150ms linear;
  cursor: pointer;
}

.more-info:hover {
  opacity: 0.5;
  cursor: pointer;
}

a {
  text-decoration: none;
  text-decoration-color: currentColor;
  color: #041c44;
}
.why-join-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: auto auto;
}

.wj-vertical {
  display: grid;
  grid-template-rows: auto auto;
  gap: 50px;
}

.footer {
  background-image: url("assets/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100vw;
  height: 100vh;
}

@keyframes bye-navbar {
  0% {
    opacity: 1;
    top: 0%;
    /* filter: blur(0px); */
  }
  100% {
    opacity: 0;
    top: -10%;
    /* filter: blur(25px); */
  }
}

@keyframes hi-navbar {
  0% {
    opacity: 0;
    top: -10%;
    /* filter: blur(0px); */
  }
  100% {
    opacity: 1;
    top: 0%;
    /* filter: blur(25px); */
  }
}

.bye-nav {
  opacity: 1;
  top: 0%;
  position: absolute;
  z-index: 10000;
  animation: bye-navbar 500ms cubic-bezier(0.62, 0.03, 0.17, 1) forwards;
}

.hi-nav {
  opacity: 0;
  top: -10%;
  position: absolute;
  z-index: 10000;
  animation: hi-navbar 500ms cubic-bezier(0.62, 0.03, 0.17, 1) forwards;
}

@keyframes footer-intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.footer-flex {
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  gap: 50px;
  transition: 1000ms cubic-bezier(0.25, 0.74, 0.17, 1);
}

.footer-intro {
  animation: footer-intro 500ms cubic-bezier(0.62, 0.03, 0.17, 1) forwards;
}

.footer-btn-list {
  display: grid;
  grid-template-rows: 1fr;
  gap: 30px;
}

.footer-btn {
  font-size: 2em;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: right;
  text-align: right;
  gap: 20px;
  transition: 150ms cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-btn:hover {
  transform: translateX(-2%);
}

@media (max-width: 1080px) {
  .what-stats {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
  }

  .collage {
    width: 100%;
  }

  h1 {
    font-size: 3em;
  }

  .fp-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 85vw;
    font-size: 1em;
    bottom: -55px;
    animation: more-info 1000ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s 1
      forwards;
  }

  .sponsor {
    flex-direction: column;
    align-items: flex-start;
  }

  .fp-text-1 {
    width: 100%;
  }

  .who {
    position: relative;
    z-index: 600;
    background-color: #fdfdff;
    width: 100vw;
    min-height: 120vh;
  }

  .what-grid {
    width: 85vw;
    height: 100%;
    align-content: center;
    gap: 40px;
    display: grid;
    grid-template-columns: auto;
    font-size: clamp(1.15em, 2vw, 4em);
  }
  .more-info {
    transform: translateY(180%);
  }

  .why-join-grid {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .membership-container {
    margin: auto;
    width: fit-content;
  }

  .membership h1 {
    font-size: 3.5em;
  }

  .membership p {
    font-size: 1.5em;
  }

  /* .activate-button {
        width: 100%;
    } */

  .benefit-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    margin: auto;
  }

  .benefits {
    width: 100%;
  }
}

.mobile-vis-a {
  opacity: 0;
  font-size: 0em;
  display: none;
}

@media (max-width: 750px) {
  .mobile-vis {
    opacity: 0;
    font-size: 0em;
    display: none;
  }

  .mobile-vis-a {
    display: contents;
    opacity: 1;
  }

  .fp-text {
    font-size: 2.2em;
  }

  .navbar-icon-text {
    display: grid;
    gap: 10px;
    grid-template-columns: 25px;
    font-size: 16px;
    align-items: center;
    cursor: pointer;
    transition: 50ms linear;
    padding: 10px;
    border-radius: 10px;
  }

  .navbar-socials {
    display: grid;
    gap: 10px;
    grid-template-columns: auto auto auto auto;
    align-items: center;
  }

  .what-stats-info {
    display: flex;
    flex-direction: column;
    gap: -50px;
  }

  .what-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.6em;
  }

  .what-info {
    font-family: "DM Sans";
    font-size: 1.5em;
  }

  .what-vertical p {
    font-size: 1em;
  }

  .more-info {
    transform: translateY(180%);
  }

  .footer-flex {
    flex-direction: column;
  }

  .footer-btn {
    font-size: 2em;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: left;
    text-align: right;
    gap: 20px;
  }

  .why-join-grid {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
}

.pcsoc-footer {
  display: flex;
  gap: 25px;
  flex-direction: column;
}

.white {
  color: #fdfdff;
}

/* * { outline: 1px solid rgb(255, 0, 0)} */
