@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    scroll-margin-top: 55px;
}

body {
    background-color: #0c0d17;
    color: white;
    font-family: "Poppins";
    text-align: center;
}

a {
    color: #eebb3b;
    cursor: pointer;
}

header {
    position: fixed;
    color: white;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(31, 9, 156);
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.075); 
}

.signup-section {
    position: absolute;
    right: 3vw;
    height: inherit;
    align-items: center;
    background-color: #eebb3b;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 20px;
}

.signup-section:hover {
    background-color: #987725;
}

header a {
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
}

nav {
    display: flex;
    font-size: 1.25rem;
}

nav a {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    /* background-color: rgba(31, 9, 156, 0.8); */
    border-radius: 20px;
}

nav a:hover {
    background-color: rgb(23, 7, 114, .8);
    cursor: pointer;
}

input {
    padding: 0.5rem;
    border: none;
    font-family: Poppins;
    border-radius: 8px;
}

button[type="submit"] {
    background-color: #eebb3b;
    color: white;
    font-family: "Poppins";
    font-weight: 500;
    padding: 0.5rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-left: auto;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

iframe {
    border: gold 3px solid;
    width: 40%;
    height: 55vh;
}

.schedule {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.schedule td {
    font-size: 1.2rem;
    padding: 8px 5px;
}

.scheduleTime {
    width: 10%;
}

.schedule .activity {
    width: 18%;
}

.schedule .description {
    text-align: left;
    width: 40%;
}

.title-holder {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1f099c;
    text-align: center;
}

.title-holder .logo {
    max-height: 30vh;
    max-width: 90vw;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.image-carousel {
    max-height: 37.5vh;
    position: relative;
    margin-top: 1rem;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    /* color: white; */
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
  
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.title-description {
    font-size: 2rem;
}

.countdown-timer {
    font-family: "Poppins";
    font-weight: bold;
    font-size: 45px;
    margin-top: 4vh;
    margin-bottom: 5vh;
}

.date {
    color: #eebb3b;
    font-size: 1.5rem;
}

.newsletter-folder {
    display: flex;
    align-items: center;
    background-color: white;
    margin-top: 6px;
    padding: 2px;
    border-radius: 8px;
}

.welcome-container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    width: 50%;
    margin-top: 2rem;
}

.welcome-container h1 {
    width: 100%;
    margin-bottom: 1rem;
}

.welcome-text {
    text-align: left;
    width: 100%;
    font-size: 1.25rem;
}

.main {
    width: 100%;
}

.partners-logos, .sponsor-logos {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-direction: row;
}

.partners-logos img,
.logos-l img {
    width: 30vw;
    margin: 2vw;
    object-fit: contain;
}

.logos-m img {
    width: 20vw;
    margin: 2vw;
    object-fit: contain;
}

.logos-s img {
    width: 15vw;
    margin: 2vw;
    object-fit: contain;
}

.partners-logos a,
.sponsor-logos a {
    transition: transform 0.2s;
}

.partners-logos a:hover,
.sponsor-logos a:hover {
    transform: scale(1.1);
}

.directions {
    margin-bottom: 3rem;
}

.faq-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.accordion-item {
    cursor: pointer;
    padding: 1rem;
    width: 40%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.accordion-button {
    background-color: #1f099c;
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.75rem;
    font-weight: bold;
    transition: 0.4s;
    font-family: "Poppins";
    color: white;
    cursor: pointer;
}

.accordion-content {
    background-color: #1f099c;
    transition: 0.25s;
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    width: 100%;
    font-size: 1.25rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1rem;
}

.team {
    margin-left: auto;
    margin-right: auto;
    max-width: 90rem;
    text-align: left;
    margin-top: 4rem;
}

.team > div {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.team h1 {
    text-align: center;
}

.team h3 {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.team ul {
    display: grid;
    gap: 1rem;
}

.team li {
    display: flex;
    column-gap: 1rem;
    align-items: center;
}

.team img {
    aspect-ratio: 1;
    width: 7.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.team .name {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 800;
}

.team .position {
    font-weight: 500;
}

.team .school {
    font-size: 0.8rem;
    line-height: 1.25rem;
}

.team svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 640px) {
    .team ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sponsor-holder {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.sponsor-text1 {
    font-size: 20px;
}

.sponsor-text2 {
    font-size: 20px;
}

.sponsor-button,
.btn {
    color: white;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 1.5rem;
    padding: 0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border: none;
    cursor: pointer;
    border-radius: 3rem;
    text-decoration: none;
    margin-top: .5rem;
    transition: 0.2s;
}

.btn {
    background-color: #eebb3b;
}

.btn:hover {
    transform: scale(1.2);            
}


.sponsor-button {
    background-color: #1f099c;
}

.donate {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.donate h1 {
    margin-bottom: 1rem;
}

.contact svg {
    color: #eebb3b;
    width: 3rem;
    height: 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.credits {
    font-size: .75rem;
    margin-top: 5rem;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.hcb {
    margin-top: 10px;
}

.pink {
    color: #ec4899;
}

@media (max-width: 768px) {
    .schedule {
        width: 100%;
    }

    .scheduleTime {
        width: 30%;
    }

    iframe {
        width: 97.5%;
        height: 65vh;
    }

    .sponsor-logos {
        flex-direction: column;
    }

    .btn {
        margin-top: 0;
        font-size: 2rem;
        padding: .33rem;
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .partners-logos img,
    .logos-l img {
        width: 80vw;
    }

    .logos-m img {
        width: 70vw;
    }

    .logos-s img {
        width: 45vw;
    }

    .welcome-container {
        width: 80%;
    }

    .title-description, .date {
        font-size: 1.5rem;
        margin: .2rem;
    }

    .title-holder p,
    .title-holder h1
    .title-holder h2 {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .title-holder .logo {
        max-height: 30vh;
    }

    .countdown-timer {
        width: 95%;
        margin-bottom: 0.5rem;
    }

    .faq-boxes {
        flex-direction: column;
    }

    .accordion-item {
        width: 100%;
    }

    .sponsor-holder * {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .sponsor-button {
        margin-top: 1.5rem;
    }

    .team h3 {
        margin-left: 1rem;
    }

    /* TEMPORARY, REMOVE LATER */
    header {
        display: none;
    }
}