.mobile-hide {
    display: none;
}
body {
    margin: 0;
    font-size: 16px;
    /* background: url(../img/graybg.jpg); */
}
.container {
    width: 100%;
    max-width: 1440px;
    background-color: #fff;
    margin: auto;
}
header {
    height: 75px;
    width: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 3px 1px #bbb;
}
.header_container_fs {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: calc(1440px*0.95);
    height: 100%;
    margin: auto;
    font-size: 18px;
    text-transform: uppercase;
}
.header_container_fs ul li {
    display: inline;
    padding: 10px;
}
.header_container_fs ul li a {
    color: #262626;
    text-decoration: none;
    transition: 0.1s;
    cursor: pointer;
}
.header_container_fs ul li a:hover {
    border-bottom: 3px solid #262626;
}
.header_container_m {
    height: 100%;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header_container_m > a > img {
    height: 40px;
}
.header_container_fs > a > img {
    height: 50px;
}
.menuButton {
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 5000;
    border-top: 2px solid black;
}
#menu.on {display: block;}

#club_subMenuButton, #events_subMenuButton {
    display: flex;
    align-items: center;
}
#club_subMenuButton.on, #events_subMenuButton.on {
    background-color: #ddd;
}

#club_subMenu, #events_subMenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
}
#club_subMenu.on, #events_subMenu.on {
    display: flex;
}

/* #################### NAV MENU #################### */
.nav_menu_container {
    height: 100%;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    box-sizing: border-box;
}
.nav_menu_container a {
    color: black;
    text-decoration: none;
}
.nav_menu_title {
    font-size: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0a2b5c;
}
.nav_menu_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #bbb;
    cursor: pointer;
}
.nav_submenu_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #bbb;
}

/* #################### DROPDOWN #################### */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 10);
    z-index: 9999;
}

.dropdown-content a {
    color: black;
    line-height: 40px;
    padding: 6px 8px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active>.dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    /* xborder-radius: 25px; */
    background: #FFF;
    color: #000;
    /* xborder-bottom: 4px solid black; */
    /* xtransition: border-bottom .3s; */
}

/* #################### VIDEO #################### */
.main_video {
    position: relative;
    aspect-ratio: 480/253;
}

/* #################### WEEKLY EVENTS #################### */
.weekly_events_container {
    width: 90%;
    margin: auto;
    padding: 20px 0;
}
.weekly_events_title {
    font-size: 25px;
    background-color: #0a2b5c;
    color: white;
    border-radius: 3px;
    width: fit-content;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.weekly_events {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
.weekly_events_day {
    min-width: 150px;
    padding: 5px;
    box-sizing: border-box;
}
.weekly_events_day_title {
    border-bottom: 2px solid #0a2b5c;
    padding-bottom: 3px;
    margin-bottom: 3px;
    font-size: 20px;
}
.weekly_events_day_info {
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}
.weekly_events_day_info > span {
    font-style: italic;
    padding-left: 10px;
}

/* #################### CARDS #################### */
.index_hr {
     height: 3px;
     background-color: #0a2b5c;
     width: 90%;
     margin: auto;
     margin-bottom: 2px;
}
.squiggly {
    position: relative;
    height: 10px;
    width: 100%;
}
.squiggly::after,
.squiggly::before {
    height: inherit;
    width: inherit;
    background-size: 12px 100%; /* Change this to adjust the size of the squiggly line. */
    content: "";
    position: absolute;
}
.squiggly::before {
    top: -2px;
    background-image: linear-gradient(45deg, #0a2b5c 35%, transparent 0),
        linear-gradient(-45deg, #0a2b5c 35%, transparent 0);
}
.squiggly::after {
    top: 0px;
    background-image: linear-gradient(45deg, white 35%, transparent 0),
        linear-gradient(-45deg, white 35%, transparent 0);
}
.squiggly_text {
    text-align: center;
    padding: 5px 0;
    font-size: 20px;
    color: #0a2b5c;
    font-weight: bold;
}
.card_container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 90%;
    margin: 10px auto;
    position: relative;
    text-align: center;
}
.card { 
    aspect-ratio: 3/4;
    width: 150px;
    height: 200px;
    font-size: 1rem;
    font-family: Open Sans, Frutiger, Frutiger Linotype, Univers, Calibri, Myriad Pro, Myriad, Geneva, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .05em;
    box-shadow: 5px 5px 5px #888888;
    text-align: center;
    margin: 10px;
    transition: 0.25s;
    position: relative;
}
.card img {
    height: 100%;
    width: 100%;
}
.card_title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.025rem;
    font-size: 1em;
    text-shadow: 0 0 5px #000;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 7px 0;
    line-height: 1.2;
}
.calendarStyle {
    width: 95%; 
    border: none;
}
.upcom {
    font-size: 25px;
    text-align: center;
    padding: 20px 0;
}

/* #################### MEMBERSHIP #################### */
.membership_page {
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.membership_intro {
    background: url(../img/membership_page/cover.jpg);
    background-position: bottom right;
    background-size: cover;
}
.membership_intro_overlay {
    background-color: rgba(10, 43, 92, 0.5);
    padding: 20px 0 40px 0;
}
.membership_intro_text {
    text-align: center;
    color: white;
    width: 90%;
    margin: auto;
}
.membership_info_button {
    text-align: center;
    width: fit-content;
    margin: auto;
    padding: 10px;
    color: white;
    text-decoration: none;
    background-color: rgb(221, 153, 51);
    border-radius: 5px;
    font-weight: bold;
}
.membership_google {
    background: linear-gradient(rgba(65, 115, 55, 1), #ffffff);
    display: none;
}
.membership_about {
    text-align: center;
    color: #0a2b5c;
}
.membership_about_grid {
    display: flex;
    flex-direction: column;
    color: #0a2b5c;
    text-align: center;
}
.membership_about_grid_item {
    width: 80%;
    margin: auto;
}

/* #################### ABOUT #################### */
.about_section {
    width: 95%;
    margin: auto;
    color: #0a2b5c;
}
.about_section p {
    width: 95%;
    margin: auto;
}
.team_member_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 95%;
    margin: auto;
}
.team_member {
    min-width: 150px;
    width: 150px;
    padding-bottom: 20px;
}
.team_member_img {
    aspect-ratio: 3/4;
    width: 100%;
}
.team_member_title {
    font-size: 20px;
}
.team_member_subtitle {
    font-size: 16px;
    font-style: italic;
}
.team_member_desc {
    font-size: 16px;
    display: none;
}
.employment {
    padding: 20px 0;
    min-height: 400px;
}
.employment_info_button {
    text-align: center;
    width: fit-content;
    margin: auto;
    padding: 10px;
    color: white;
    text-decoration: none;
    background-color: #0a2b5c;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
}
.employment_button_c {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.employment_button_a {
    text-align: center;
    padding: 10px;
    color: white;
    text-decoration: none;
    background-color: #0a2b5c;
    border-radius: 5px;
    font-weight: bold;
}
.employment_title {
    width: 70%;
    text-align: center;
    background-color: #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 5px auto;
}
.employment_form {
    width: 70%;
    margin: auto;
}

/* #################### EVENTS #################### */
.event_header {
    font-size: 25px;
    text-align: center;
    padding: 10px 0;
    color: #0a2b5c;
    border-bottom: 2px solid #0a2b5c;
}
.event_container {
    display: grid;
    grid-template-columns: 100%;
    padding-bottom: 20px;
}
.event_pic {
    padding-top: 10px;
    width: 60%;
    margin: auto;
}
.event_pic img {
    width: 100%;
    box-shadow: 0 1px 3px 1px #bbb;
}
.event_details_container {
    width: 60%;
    margin: auto;
    background-color: rgba(0, 123, 255, 0.1);
    border-top: 3px solid #0a2b5c;
    border-radius: 10px;
}
.event_details {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    width: fit-content;
    margin: auto;
    font-size: 18px;
    padding-bottom: 10px;
    padding: 20px;
    
}
.event_details_a {
    font-weight: bold;
}

/* #################### MEMBERSHIP PAGES #################### */
.ms_page_header {
    font-size: 25px;
    text-align: center;
    padding: 10px 0;
    color: #0a2b5c;
    border-bottom: 2px solid #0a2b5c;
}
.ms_info_container {padding-top: 10px}
.ms_info_section {
    width: 90%;
    margin: auto;
    padding-bottom: 40px;
}
.ms_info_pic {width: 100%}
.ms_info_pic img {width: 100%;}
.ms_info_desc {
    box-sizing: border-box;
    padding: 5px 5px 5px 5px;
}
.ms_info_title {
    font-size: 22px;
    /* font-variant: small-caps; */
}
.ms_info_line {
    width: 175px;
    height: 3px;
    background-color: black;
    margin-top: 2px;
    margin-bottom: 7px;
}

/* #################### FOOTER #################### */
footer {
    border-top: 5px solid #0a2b5c;
    padding: 10px;
    /* padding-bottom: 30px; */
    box-sizing: border-box;
    background-color: #fff;
}
.footer_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 95%;
    margin: auto;
    max-width: calc(1440px*0.95);
}
.footer_title {
    /* text-align: center; */
    background-color: #0a2b5c;
    color: #fff;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 5px;
}
.footer_section {
    margin: 0 auto;
}
.footer_section_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_follow a {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer_follow a img {
    height: 30px;
}
.footer_nav { 
    display: none;
}

@media only screen and (min-width: 800px) {
    .header_container_fs {display: flex;}
    .header_container_m {display: none;}
    .membership_about_grid {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    .membership_about_grid_item {
        flex: 1;
        max-width: 300px;
    }
    .mobile-hide {
        display: block;
    }
    .mobile-show {
        display: none;
    }
    .calendarStyle {
        width: 70%;
    }
    /* ########## EVENTS ########## */
    .event_container {grid-template-columns: 50% 50%; gap: 20px; padding: 20px 0; font-weight: 20px;}
    .event_pic {margin-right: 0}
    .event_details_container {
        margin-left: 0;
        border-left: 3px solid #0a2b5c;
        border-top: none;
    }
    .event_details {
        margin-left: 0; 
        gap: 20px;
    }

    /* ########## WEEKLY EVENTS ########## */
    .weekly_events_container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .weekly_events {gap: 20px;}
    .weekly_events_day_title {font-size: 22px;}
    .weekly_events_day_info {font-size: 18px;}

    /* ########## CARDS ########## */
    .squiggly_text {font-size: 24px;}
    .card {
        width: 300px;
        height: 400px;
    }
	.card_title {
		font-size: 1.5em;
	}
    .membership_intro {
        background: url(../img/membership_page/cover_fs.webp);
        background-position: 50% 70%;
    }
    .fs_test {
        display: grid;
        grid-template-columns: 70% 30%;
    }
    .membership_intro_overlay {
        height: 400px;
        display: flex;
    }
    .membership_intro_text {
        width: 500px;
    }
    .membership_about {
        width: 80%;
        margin: auto;
    }
    .membership_google {display: block;}
    .team_member {
        min-width: 225px;
        width: 225px;
        padding-bottom: 20px;
    }
    .team_member_container {gap: 20px;}
    .footer_container {grid-template-columns: repeat(3, 1fr);}
    .footer_nav {display: block;}
}
