@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;
}


body {
    background-color: #FDFDFF;
    color: #041C44;
    margin: 0;
    padding: 0;
    font-family: "Space Grotesk", 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) 2.30s 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.8s 1 forwards;

}

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

.navbar-blur {
    opacity: 0;
    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) 3s 1 forwards;
    position: fixed;
}

.navbar {
    opacity: 0;
    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) 2.75s 1 forwards;

}

.navbar-socials {
    display: grid;
    gap: 35px;
    grid-template-columns: auto auto auto;
    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-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: grid;
    grid-template-rows: auto auto;
    font-size: 5vw;
}

@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 {
    opacity: 0;
    animation: fp-text 1000ms cubic-bezier(0.22,0.61,0.36,1) 2.55s 1 forwards;
    font-family: 'Satoshi', sans-serif;
}

.fp-text-2 {
    width: 100%;
    color: #0575C9;
    opacity: 0;
    animation: fp-text 1000ms cubic-bezier(0.22,0.61,0.36,1) 2.75s 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 2.6s 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.80;
    }
  }

.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;
}



.satoshi {
    font-family: 'Satoshi';

}

.what-info {
    /* transform: translateY(-180%); */
    font-family: 'Satoshi';
}

@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: 900px;
}

.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: 'Satoshi';

}

.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) 2.75s 1 forwards;
  }

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

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


  .more-info {
    font-family: 'Satoshi';
    font-weight: 600;
    opacity: 0.25;
    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) 2.75s 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;
        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: 'Satoshi';
        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, 255, 255);} */