html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #13113f;
    color: #ffffff;
    font-weight: 300;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    list-style-type: none;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px;
    margin: 0;
    gap: 20px;
}

.navbar-item:first-child {
    margin-right: auto;
}

.navbar-item a {
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.hero-header {
    text-align: center;
    font-size: 6.75rem;
    font-weight: normal;
    margin: 20px 0 0 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 60%;
    margin: -60px auto -20px auto;
}

.hero-desc {
    font-weight: normal;
    text-align: center;
    font-size: 2rem;
}

.cta-btn {
    background-color: #d9d9d9;
    color: black;
    border: none;
    border-radius: 30px;
    font-size: 2rem;
    padding: 12px 48px;
    display: block;
    margin: 10px auto 30px auto;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.cta-btn:hover {
    background-color: #c5c5c5;
}

.sponsor-label {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 50px;
}

.sponsor-strip {
    background-color: #dcdcdf;
    width: 100%;
    padding: 20px;
    margin-bottom: 80px;
    box-sizing: border-box;
}

.sponsor-img-row {
    display: flex;
    justify-content: center; 
    gap: 80px;
    margin-bottom: 20px;
}

.sponsor-img-row img {
    height: 75px;
    width: auto;
}

.site-footer {
    background-color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    padding: 20px;
    box-sizing: border-box;
}

.site-footer img {
    height: 30px;
    width: auto;
}

.page-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin: 20px 0px;
}

.description-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 70%;
    text-align: justify;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.slideshow {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 60px auto;
    aspect-ratio: 16 / 9;
}

.slideshow iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.slideshow-label {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}

.sponsor-packet-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 50px;
}

.sponsor-packet-container iframe {
    width: 500px;
    height: 600px;
}

.sponsor-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 50%;
    margin: 30px auto 70px auto;
    align-items: center;
}

.sponsor-row img {
    background-color: #d9d9d9;
    border-radius: 10px;
    padding: 10px;
    height: 100px;
}

.sponsor-row h3 {
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0px 0px 10px 0px;
}

.sponsor-row p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    text-wrap: balance;
}

.about-desc {
    font-weight: 300;
    text-align: center;
    font-size: 1.2rem;
    padding: 0px 20px;
}

.page-subheading {
    font-weight: 300;
    text-align: center;
    font-size: 2rem;
}

#officers-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.officer-individual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.officer-individual img {
    border-radius: 10px;
    width: 180px;
    height: auto;
}

.officer-individual h4 {
    margin: 10px 0px;
    font-weight: 400;
    font-size: 1.1rem;
}

.officer-individual p {
    margin: 0;
    font-size: 1rem;
}

#member-list-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

#member-list-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    flex: 1;
    max-width: 200px;
}

#member-list-container div p {
    margin: 5px;
    text-align: center;
    width: 100%;
}

#glaze-myself {
    text-align: center;
    font-size: 0.5rem;
}


/* Footer icons and sponsor images closer together */
@media (max-width: 1200px) {
    .sponsor-img-row img {
        height: 50px;
    }
    .site-footer {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background-color: #13113f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar-item {
        margin: 5px 0;
    }
    
    .navbar-item a {
        font-size: 1.5rem;
    }
    
    .navbar-item:first-child {
        margin-right: 0;
    }

    .hero-header {
        font-size: 3rem;
        margin: 50px 10px 0px 10px;
    }

    .hero-img {
        width: 90%;
        margin: -20px auto -20px auto;
    }

    .hero-desc {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
    }

    .sponsor-label {
        font-size: 1rem;
        margin: 30px 10px 10px 10px;
    }

    .sponsor-strip {
        padding: 15px 10px;
        margin-bottom: 50px;
    }

    .sponsor-img-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        align-items: center;
    }

    .sponsor-img-row img {
        height: 40px;
        width: auto;
        max-width: 90vw;
    }

    .site-footer {
        gap: 20px;
        flex-wrap: wrap;
        padding: 15px 10px;
        margin-bottom: 5px;
    }

    .site-footer img {
        height: 20px;
    }

    .site-footer div {
        order: -1;
        width: 100%;
        font-size: 0.8rem;
    }

    .page-heading {
        margin-top: 60px;
    }

    .sponsor-row {
        flex-direction: column;
        max-width: 80%;
        gap: 15px;
    }

    .sponsor-row img {
        width: 90%;
        height: auto;
        order: 0;
    }

    .sponsor-desc-col {
        order: 1;
    }

    .sponsor-packet-container {
        flex-direction: column;
        gap: 10px;
    }

    .sponsor-packet-container iframe {
        width: 90%;
        height: 500px;
    }

    #officers-container {
        flex-direction: column
    }

    #member-list-container {
        flex-direction: column;
        align-items: center;
    }
}