/* init style.css */

/* Media Queries */

/* Mobile */
@media screen and (max-width: 950px) {
    #hamLinks {
        display: none;
    }
    #gearWOUT {
        display: none;
    }
    #gearWITH {
        display: flex;
    }
    #meetingPopupButton {
        display: none;
    }
    #hamIcon {
        display: flex;
    }
    #cecTitle {
        display: none;
    }
}
/* Desktop */
@media screen and (min-width: 950px) {
    #gearWOUT {
        display: flex;
    }
    #gearWITH {
        display: none;
    }
    #hamIcon {
        display: none;
    }
    #cecTitle {
        display: flex;
    }
}


/* Global styles */
* {
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --Brand-blue-primary: #5271FF;
    --Brand-blue-secondary: #7186EB;
    --Brand-blue-tertiary: #2C4DAF;
    --Brand-yellow-tertiary: #F6B33E;
    --Brand-yellow-primary: #FFEB31;
    --Brand-yellow-secondary: #FFF16B;
    --Text-Black: #050414;
    --Text-Grey: #414141;
    --Text-White: #EFEFEF;

    /* Light Mode Variables */
    --L-Text-Primary: #050414;
    --L-Text-Secondary: #414141;
    --L-Text-InvertPrimary: #EFEFEF;
    --L-Text-InvertSecondary: #D0D0D0;
    --L-Text-Blue: #2C4DAF;
    --L-BG-Primary: #FBFBFE;
    --L-BG-Secondary: #dddddd;
    --L-Border-Blue: #5271FF;
    --L-Border-Yellow: #FFEB31;

    /* Dark Mode Variables */
    --D-Text-Primary: #EFEFEF;
    --D-Text-Secondary: #D0D0D0;
    --D-Text-InvertPrimary: #050414;
    --D-Text-InvertSecondary: #414141;
    --D-Text-Blue: #7186EB;
    --D-BG-Primary: #1C1B22;
    --D-BG-Secondary: #2B2A33;
    --D-Border-Blue: #2C4DAF;
    --D-Border-Yellow: #F4E134;
}

html.lightTheme {
    --Text-Primary: var(--L-Text-Primary);
    --Text-Secondary: var(--L-Text-Secondary);
    --Text-InvertPrimary: var(--L-Text-InvertPrimary);
    --Text-InvertSecondary: var(--L-Text-InvertSecondary);
    --Text-Blue: var(--L-Text-Blue);
    --BG-Primary: var(--L-BG-Primary);
    --BG-Secondary: var(--L-BG-Secondary);
    --Border-Blue: var(--L-Border-Blue);
    --Border-Yellow: var(--L-Border-Yellow);
}

html.darkTheme {
    --Text-Primary: var(--D-Text-Primary);
    --Text-Secondary: var(--D-Text-Secondary);
    --Text-InvertPrimary: var(--D-Text-InvertPrimary);
    --Text-InvertSecondary: var(--D-Text-InvertSecondary);
    --Text-Blue: var(--D-Text-Blue);
    --BG-Primary: var(--D-BG-Primary);
    --BG-Secondary: var(--D-BG-Secondary);
    --Border-Blue: var(--D-Border-Blue);
    --Border-Yellow: var(--D-Border-Yellow);
}

body {
    margin: 0;
    background-color: var(--BG-Primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color-scheme: light;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: Poppins;
    src: url(../assets/fonts/Poppins-Regular.ttf);
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
    gap: 48px;
}

@media screen and (max-width: 950px) {
    .main{
        gap: 24px;
    }
}

/* Button Classes */
.yellowButton {
    background-color: var(--Brand-yellow-primary); /* Brand Yellow */
    border: none;
    color: var(--Text-Black) !important; /* Text Primary */
    padding: 2px 6px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    border-radius: 12px;
    transition-duration: 0.4s;
    font-family: Poppins;
}

.yellowButton:hover {
    background-color: var(--Brand-yellow-tertiary); /* Brand Yellow Secondary*/
    color: var(--Text-Black); /* Text Primary */
}

.blueButton {
    background-color: var(--Brand-blue-primary); /* Brand Yellow */
    border: none;
    color: var(--Text-White); /* Text Primary */
    padding: 2px 6px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    border-radius: 12px;
    transition-duration: 0.4s;
    font-family: Poppins;
}

.blueButton:hover {
    background-color: var(--Brand-blue-primary); /* Brand Yellow Secondary*/
    color: var(--Text-White); /* Text Primary */
}

.heroContainer {
    display: flex;
    gap: 64px;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 24px;
    width: 70%;
}

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

.footerGroup {
    display: block;
    flex: 1;
    max-width: 600px;
    min-width: fit-content;
    text-align: left;
}

.heroGroup.center {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    min-width: fit-content;
}

.heroBar {
    display: flex;
    width: 100%;
    padding: 36px;
    justify-content: center;
    background-color: var(--Brand-blue-primary);
}

@media screen and (max-width: 950px) {
    .footerBar {
        flex-direction: column;
        align-items: start;
        justify-content: left;
        gap: 32px;
        padding: 20px;
        padding-top: 0px;
        text-align: center;
    }

    .footerBar .footerGroup {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .footerBar .iconGrid {
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .heroContainerCOL {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        margin-bottom: 36px;
        margin-top: 36px;
    }

    .heroBarCOL {
        display: flex;
        flex: 1;
        text-align: center;
        flex-direction: column;
        gap: 12px !important;
    }

    .txMobile {
        text-align: center !important;
    }
}

.e404Hero {
    display: flex;
    gap: 64px;
    justify-content: center;
    margin-bottom: 36px;
    align-items: center; 
    margin-top: 36px; 
    padding: 36px; 
    flex: 1;
    text-align: left;
}

@media screen and (max-width: 950px) {
    .e404Hero {
        flex-direction: column;
        gap: 24px;
    }
}

/* index.html sponsor carousel logos */
.sponsorLogo {
    display: flex;
    background-color: var(--BG-Secondary);
    max-width: 150px;
    flex-direction: row;
    overflow: hidden;
    margin: 0 10px;
}

.iconGrid {
    display: flex;
    gap: 16px;
    align-items: center;
}

.faqContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.faqGroup {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 70%;
    word-wrap: break-word;
    margin-bottom: 16px;
    align-items: stretch;
}

.faqQuestion {
    /* display: flex; */
    width: 30%;
    min-height: 1em;
    text-align: right;
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faqAnswer {
    display: flex;
    width: 70%;
    min-height: 1em;
    text-align: left;
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}

.faqSeparator {
    width: 4px;
    min-height: 100%;
    background-color: var(--Border-Blue);
    margin: 14px 10px;
    border-radius: 2px;
    align-self: stretch;
}

@media screen and (max-width: 950px) {
    #faqContainerLandscape {
        display: none;
    }
    #faqContainerMobile {
        display: flex;
    }

    .faqQuestion {
        width: 100%;
        text-align: center;
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 0px;
    }
    .faqAnswer {
        width: 100%;
        text-align: center;
        max-width: 100%;
        margin-bottom: 32px;
        margin-top: 0px;
    }
    .faqSeparator {
        width: 100%;
        height: 4px;
        margin: 0px;
    }
}
@media screen and (min-width: 950px) {
    #faqContainerLandscape {
        display: flex;
    }
    #faqContainerMobile {
        display: none;
    }
}


/* Text Styles */
.txHeader{
    color: var(--Text-Primary);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-weight: bolder;
}

.txSubtitle {
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}

.txParagraph1 {
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    max-width: 400px;
}

.txParagraph2 {
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    max-width: 400px;
}

.txParagraph3 {
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    max-width: 400px;
}

.txWhite {
    color: var(--Text-White);
}

.txExecProf {
    color: var(--Text-Primary);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 500px;
    text-align: left;
    margin-bottom: 0px;
    margin-top: 0px;
}

.txColumn {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 950px) {
    .txHeader {
        font-size: 22px;
        text-wrap-mode: wrap;
    }
}


/* Image and Image Border Classes */
.execPhotoBlue {
    width: 120px;
    height: auto;
    border-radius: 72px;
    border: 4px var(--Brand-blue-primary) solid;
}

.execPhotoYellow {
    width: 120px;
    height: auto;
    border-radius: 72px;
    border: 4px var(--Brand-yellow-primary) solid;
}

.imageHero {
    border: 4px var(--Brand-blue-primary) solid;
    border-radius: 16px;
    max-width: 400px;
    height: auto;
    width: 100%;
}

/* Image Overlay Classes */
.image-container {
    position: relative;
    display: inline-block;
}

/* .landingContainer {
    position: relative;
    display: inline-block;
    width: 100%;
} */

.landingImage {
    display: block;
    width: 100%;
    height: auto;
}

.landingGear {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 1;
    max-width: 12%;
}

@media screen and (max-width: 950px) {
    .landingContainer {
        position: relative;
        display: inline-block;
        width: 100%;
    }
    .landingImage {
        display: block;
        width: 100%;
        height: auto;
    }
    .landingGear {
        position: absolute;
        max-width: 31%;
        top: 35%;
        left: 0;
        right: 0;
        margin-inline: auto;
        z-index: 1;
    }
}

@keyframes rotateGear {
    100% {
        transform: rotate(360deg);
    }
}

/* End Image Overlay Classes */

.icon {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.execRow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
}

.execProfile {
    display: flex;
    flex: 1 1 0;
    max-width: 50%;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

@media screen and (max-width: 950px) {
    #execContainerLandscape {
        display: none;
    }
    #execContainerPortrait {
        display: block;
    }
}
@media screen and (min-width: 950px) {
    #execContainerLandscape {
        display: block;
    }
    #execContainerPortrait {
        display: none;
    }
}

.headingBorder{
    display: inline-block;
    border-bottom: 4px var(--Border-Blue) solid;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
}

.subtitleBorder{
    display: inline-block;
    border-bottom: 3px var(--Border-Blue) solid;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
}

.sponsorGroup {
    display: flex;
    flex: 1;
    padding: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sponsorHighlightPlat {
    border: 4px solid var(--Brand-blue-primary);
    border-radius: 8px;
    width: 230px;
    height: auto;
    margin: 16px;
    background-color: var(--BG-Secondary);
}

.sponsorHighlightGold {
    border: 4px solid var(--Brand-blue-primary);
    border-radius: 8px;
    width: 200px;
    height: auto;
    margin: 16px;
    background-color: var(--BG-Secondary);
}

.sponsorHighlightSilv {
    border: 4px solid var(--Brand-blue-primary);
    border-radius: 8px;
    width: 180px;
    height: auto;
    margin: 16px;
    background-color: var(--BG-Secondary);
}

.sponsorHighlightOthe {
    border: 4px solid var(--Brand-blue-primary);
    border-radius: 8px;
    width: 160px;
    height: auto;
    margin: 16px;
    background-color: var(--BG-Secondary);
}

.sponsorSwipe{
    position: relative;
    overflow: visible;
    width: max-content;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}

/* .sponsorSwipe
    .sponsorHighlightPlat,
    .sponsorHighlightGold,
    .sponsorHighlightSilv,
    .sponsorHighlightOthe{
        width: 25%;
        max-width: 300px;
        margin: 8px;
} */

.swipeIndicator {
    width: 50%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swipeDash {
    background-color: var(--Brand-blue-secondary);
    height: 15px;
    width: 30px;
    border-radius: 25%;
    display: inline-block;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.swipeDash.active{
    color: var(--Brand-blue-primary);
}

@media screen and (max-width: 950px) {
    .sponsorHighlightPlat,
    .sponsorHighlightGold,
    .sponsorHighlightSilv,
    .sponsorHighlightOthe {
        width: 43%;
        max-width: 300px;
        margin: 8px;
    }

    #sponsorLandscape {
        display: none;
    }
    #sponsorMobile {
        display: flex;
    }
    #sponsorSwipe {
        display: flex;
    }
    #swipeIndicator {
        display: flex;
    }
}

@media screen and (min-width: 950px) {
    #sponsorLandscape {
        display: flex;
    }
    #sponsorMobile {
        display: none;
    }
    #sponsorSwipe {
        display: none;
    }
    #swipeIndicator {
        display: none;
    }
}

.eventColumn{
    display: flex;
    flex-direction: column;
    width: 45%;
    height: 100%;
    gap: 32px;
    justify-content: space-between;
}

.eventCard {
    display: flex;
    background-color: var(--Brand-blue-primary);
    border-radius: 12px;
    max-height: max-content;
    align-items: center;
    padding: 16px;
    overflow: hidden;
}

.eventImg{
    display: block;
    flex: 1;
    border-style: solid;
    border-color: var(--Brand-blue-tertiary);
    border-width: 4px;
    border-radius: 10px;
    object-fit: cover;
    height: auto;
    max-width: 34%;
}

.eventDetails{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.eventInfo{
    display: block;
    flex: 2;
    padding-left: 16px;
}

.eventContainer{
    display: flex;
    flex-direction: column;
    width: 60%;
    height: auto;
    gap: 32px;
}

.txLink{
    color: var(--Brand-blue-primary);
    font-family: Poppins;
}

@media screen and (max-width: 950px) {
    #upcomingEventsContainerLandscape {
        display: none;
    }
    #upcomingEventsContainerMobile {
        display: flex;
    }
    #pastEventsContainerLandscape {
        display: none;
    }
    #pastEventsContainerMobile {
        display: flex;
    }
    #oppurtunitiesContainerLandscape {
        display: none;
    }
    #oppurtunitiesContainerMobile {
        display: flex;
    }
    .eventContainer{
        width: 70%;
    }
    .eventCard{
        flex-direction: column;
    }
    .eventDetails{
        flex-direction: column;
        text-align: left;
        justify-content: start;
    }
    .eventDetails .txParagraph1{
        margin-bottom: 0px;
        width: 100%;
    }
    .eventDetails .txParagraph2{
        margin-bottom: 0px;
        width: 100%;
    }
    .eventImgMobile{
        display: flex;
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 4 / 3;
        border-style: solid;
        border-color: var(--Brand-blue-tertiary);
        border-width: 4px;
        border-radius: 10px;
    }
    .eventInfo{
        flex: 1;
        padding: 0px;
        width: 100%;
    }
}
@media screen and (min-width: 950px) {
    #upcomingEventsContainerLandscape {
        display: flex;
    }
    #upcomingEventsContainerMobile {
        display: none;
    }
    #pastEventsContainerLandscape {
        display: flex;
    }
    #pastEventsContainerMobile {
        display: none;
    }
    #oppurtunitiesContainerLandscape {
        display: flex;
    }
    #oppurtunitiesContainerMobile {
        display: none;
    }
    .eventDetails .txParagraph2{
        text-align: right;
    }
}

.pagination{
    display: inline-block;
    font-family: Poppins;
    font-size: 20px;
    margin: 32px;
    
}

.pagination a{
    color: var(--Brand-blue-primary);
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color .3s;
}

.pagination a.active{
    background-color: var(--Text-InvertPrimary);
    color: var(--Brand-blue-tertiary);
    border-radius: 8px;
}

.pagination a:hover:not(.active) {background-color: var(--Text-InvertSecondary);}

.historyTabs {
    display: flex;
    width: 60%;
    justify-content: space-between;
    background-color: transparent;
    padding: 36px 0px;
}

.txHistoryYear{
    font-family: Poppins;
    font-size: 20px;
    font-weight: bold;
    color: var(--Text-Primary);;
}

.txHistoryName{
    font-family: Poppins;
    font-size: 16px;
    color: var(--Text-Primary);
    margin-bottom: 0px;
}

.txHistoryRole{
    font-family: Poppins;
    font-size: 14px;
    color: var(--Text-Secondary);
    margin-top: 0px;
    
}

.historyRow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
    align-items: center;
}

.historyYearRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 32px;
}
.historyYearLabel {
    min-width: 100px;
    font-weight: bold;
    margin-right: 24px;
    align-items: center;
    text-align: center;
    margin-right: 0px;
}
.historyRolesRow {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.historyRoleCard {
    display: flex;
    flex-direction: column;
}



@media screen and (max-width: 950px) {
    .historyTabs {
        width: 90%;
        padding: 0px;
        padding-top: 20px;
    }
    #execHistoryContainerMobile {
        display: flex;
    }
    #execHistoryContainerLandscape {
        display: none;
    }
    #lifeMemberContainerMobile {
        display: flex;
    }
    #lifeMemberContainerLandscape {
        display: none;
    }
    .historyRolesRow {
        align-items: center;
        justify-content: center;
    }
    .historyYearRow {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0px;
    }
    .txHistoryName{
        font-size: 14px;
    }
    .txHistoryRole{
        font-size: 14px;
    }
}

@media screen and (min-width: 950px) {
    #execHistoryContainerMobile {
        display: none;
    }
    #execHistoryContainerLandscape {
        display: block;
    }
    #lifeMemberContainerMobile {
        display: none;
    }
    #lifeMemberContainerLandscape {
        display: block;
    }
    .historyRoleCard {
        align-items: flex-start;
    }
}

.tab{
    overflow: hidden;
    background-color: var(--Text-InvertPrimary);
    border: none;
}

.tab button{
    background-color: inherit;
    cursor: pointer;
}

.tab button:hover{
    background-color: var(--Text-InvertPrimary);
}

.tab button.active{
    display: inline-block;
    border-bottom: 4px solid var(--Brand-blue-primary);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
}

.tabContent{
    display: none;
}

.tabContent.active{
    display: block;
}

.overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 200ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    position: fixed;
    top: 150px;
    right: 50px;
    padding: 20px;
    background: var(--Brand-blue-primary);
    border-radius: 16px;
    width: 22.5%;
    transition: all 0.6s ease-in-out;
    z-index: 9;
}

.popupLocation{
    position: fixed;
    top: 150px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 50%;
    width: auto;
}

.popup .close {
    position: fixed;
    top: 160px;
    right: 66px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--L-Text-InvertPrimary);
    background-color: transparent;
    border: none;
}
.popup .close:hover {
    color: var(--L-Text-InvertSecondary);
}

/* Sponsor Carousel Styles */
.sponsorContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--Brand-blue-primary);
    flex-wrap: wrap;
    align-items: flex-start;
}

.sponsorContainer .heroBar {
    flex: 0 0 60%;
}

.sponsorContainer .sponsorCarousel {
    flex: 1 1 100%;
    max-width: 100%;
}


.sponsorCarousel{
    height: 150px;
    position: relative;
    overflow: hidden;
    background-color: var(--BG-Secondary);
}

@media screen and (max-width: 950px) {
    .sponsorCarousel{
        height: 100px;

    }
    .sponsorLogo {
        max-width: 100px;
    }
}

.sponsorBar {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    max-height: 150px;
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: bannermove 30s linear infinite;
}

.sponsorBar img {
    margin: 0 10px;
}

@keyframes bannermove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

.clubHistoryContainer{
    display: flex;
    width: 100%;
    gap: 32px;
    flex-direction: column;
    margin-bottom: 32px;
    justify-content: end;
}

.clubHistoryYear{
    border-color: var(--Brand-blue-tertiary);
    border-radius: 4px;
    border-width: 2px;
    font-size: 20px;
    color: var(--Text-Secondary);
    background-color: var(--BG-Secondary);
    width: fit-content;
    padding: 8px 16px;
    font-family: Poppins;
    height: fit-content;
    text-align: center;
}

.clubHistoryEntry{
    display: flex;
    flex-direction: row;
    height: fit-content;
    gap: 16px;
    align-items: center;
    min-height: 100%;
}

.clubHistoryEntry .eventCard{
    flex: 1 1 auto;
    width: auto;
}

.clubHistoryLabel{
    width: 10%;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clubHistorySeparator{
    width: 4px;
    height: 100%;
    background-color: var(--Border-Blue);
    border-radius: 2px;
    min-height: 60px;
    margin: 0;
    align-self: center;
}

.wipLabel{
    font-family: Poppins;
    font-size: 12px;
    color: var(--Text-White);
    background-color: var(--Brand-blue-primary);
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
}

.linkGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    row-gap: 12px;
    column-gap: 12px;
}

.linkGrid > :nth-child(1){grid-column: 1 / span 1;} /* Meeting Minutes */
.linkGrid > :nth-child(2){grid-column: 2 / span 2;} /* Sem Calendar */
.linkGrid > :nth-child(3){grid-column: 4 /span 4;} /* Locker Hire */

.linkGrid > :nth-child(4){grid-column: 1 / span 2;} /* Club Governance */
.linkGrid > :nth-child(5){grid-column: 3 / span 5;} /* Ball Photos */

.linkGrid > :nth-child(6){grid-column: 1 / span 1;} /* Blank 1 */
.linkGrid > :nth-child(7){grid-column: 2 / span 2;} /* Blank 2 */
.linkGrid > :nth-child(8){grid-column: 4 / span 4;} /* Blank 3 */

.linkItem{
    border: 2px solid var(--Border-Blue);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.linkItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkLabel{
    font-family: Poppins;
    font-size: 22px;
    color: var(--Text-White);
    position: absolute;
    bottom: 8px;
    left: 12px;
    background-color: rgb(43 42 51 / 0.3);
    border-radius: 8px;
    padding: 4px 8px;
}

@media screen and (max-width: 950px) {
    #linksContainerLandscape {
        display: none;
    }
    #linksContainerMobile {
        display: flex;
    }
    .linkItem{
        aspect-ratio: 1.3;
    }
}
@media screen and (min-width: 950px) {
    #linksContainerLandscape {
        display: grid;
    }
    #linksContainerMobile {
        display: none;
    }
}

.navigationBar {
    width: 100%;
    background-color: var(--BG-Primary);
    overflow: hidden;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    box-shadow: 2px 2px 1px var(--BG-Secondary);
    position: sticky;
    top: 0px;
    z-index: 10;
    flex-wrap: nowrap;
    font-size: 18px;
}

.navLeft {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 auto;
    min-width: 0;
}

.navRight {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.navRight a {
    float: right;
    display: flex;
    align-items: center;
    padding: 12px 14px;
}

.navLinks {
    display: flex;
    gap: 20px;
}

.hamburgerList{
    display: none;
    position: fixed;
    background-color: var(--BG-Secondary);
    border-radius: 16px;
    min-width: max-content;
    max-height: 85vh;
    padding: 20px;
    padding-bottom: 10px;
    font-family: Poppins;
    z-index: 9;
    transition: all 0.6s ease-in-out;
    top: 8%;
    left: 1%;
    flex-direction: column;
    gap: 16px;
    font-size: large;
    overflow: auto;
}

.hamburgerList a {
    display: block;
    padding: 10px 0;
}

.hamburgerList a:hover {
    color: var(--Text-Blue);
    background-color: var(--BG-Secondary);
}

.navLinks a.active,
.hamburgerList a.active {
    color: var(--Text-Blue);
    font-weight: bold;
}

.hamburgerList .close {
    position: relative;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--L-Text-InvertPrimary);
    background-color: transparent;
    border: none;
}

.navLeft a,
.navRight a,
.hamburgerList a {
    color: var(--Text-Primary)
}

.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.backdrop.show { display: block; }