@font-face {
    font-family: 'baseballFont';
    src: url('./Rooster.ttf') format('truetype');
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #006270;
    color: white;
}

.champion-rose {
    width: 4em;
}

.program-inner {
    p {
        padding-bottom: 1em !important;
    }
}

.champions {
    display: inline-flex;
    align-items: anchor-center;
    p {
        margin: 0px;
        font-size: 1.2em;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
}

.program-grid-container-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
    grid-auto-rows: 1fr;
}

.program-grid-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    grid-auto-rows: 1fr;
}

.program-grid-container-2 {
    display: grid;
    gap: 0.5em;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
}

.candidate-name {
    text-align: center;
    font-family: gothic;
    font-size: 2em;
}

.modal-img {
    height: 361px;
    width: 419px;
    margin: auto;
    display: block;
    border: 3px solid black;
}

.pou {
    background-color: #2b7a4b !important;
    color: black;
}

.pou-text {
    background-color: #5C976F !important;
}

.peoplePowerFont {
    font-family: 'baseballFont', sans-serif;
    font-size: 11em;
    text-align: center;
    font-weight: normal;
    margin: 0px;
}

.card-title {
    text-align: center;
    font-family: gothic;
    font-size: 1.5em;
}

.power-slate-banner {
    width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
}

h1 {
    font-size: 38px;
    margin: 0 0 10px;
}

.program-card-text {
    p {
        font-size: 1.1em !important;
    }
}

.card-title {
    font-size: 2em !important;
}

p {
    opacity: 0.9;
}

section {
    max-width: 90%;
    margin: auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 28px;
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 20px;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #184e61;
    color: white;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
}

h1 {
    font-size: 38px;
    margin: 0 0 10px;
}

p {
    opacity: 0.9;
}

section {
    max-width: 90%;
    margin: auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 20px;
}

.divider-bar {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    margin: 15px 0;
    border-radius: 1px;
}

.card {
    flex: 0 0 calc((100% - 40px)/3);
    min-width: 250px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

@media (max-width:900px) {
    .card {
        flex: 0 0 calc((100%-20px)/2);
    }
}

@media (max-width:600px) {
    .card {
        flex: 0 0 100%;
    }
}

.card-title {
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.card-text {
    display: -webkit-box;
    font-size: 1.2em;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: "-";
    margin-bottom: 15px;
}

.program-card-text {
    /* background: rgb(145 0 0 / 90%); */
    /* background: rgb(99 2 2 / 90%); */
    background: #A1483D;
    border-radius: 5px;
    padding: 8px;
    border: black solid 2px;
    display: -webkit-box;
    font-size: 1.2em;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.expand-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.expand-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
}

.modal-content {
    max-width: 75vw;
    max-height: 90vh;
    width: 100%;
    padding: 35px;
    position: relative;
    overflow-y: auto;
}

.modal-body {
    font-size: 1.3em;
}

.modal-body .card-text {
    font-size: 1.3em;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
}

.candidate-img {
    width: 400px;
    height: 366px;
    margin: auto;
    display: block;
    border: 4px solid #182e4f
}

.program-img {
    width: 500px;
    height: 366px;
    margin: auto;
    display: block;
}

.centered-text {
    text-align: center;
}

.red-text {
    color: red
}

.modal-title {
    text-align: center;
    font-family: gothic;
    font-size: 2em;
}

.authors {
    font-size: 1em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.demo-reso-glass {
    /* background: rgba(177, 0, 0, 0.9); */
    background-color: #8a1b1a;
    border: 2px solid black;
}

.gradient-divider {
    width: 100%;
    padding: 0px;
    height: 0.2em;
    max-width: 100%;
    background: black;
}

.program-section {
    /* background-color: #6f0000; */
    background-color: #184e61;
    /* background-color: #8a1b1a; */
    max-width: 100%;
}

#modalGlass {
    /* background: rgba(9, 63, 31, 65%) !important */
    background: rgba(44, 87, 150, 46%) !important;
    /* background: #2c5796 !important; */
}

.candidates-div {
    /* background: #2b7a4b; */
    /* background-color: #006800; */
    /* background-color: rgba(177, 0, 0, 0.9); */
    background-color: #2c5796;
    border: 2px solid black;
}

.candidates-section {
    background: #184e61;
    max-width: 100%;
}

.candidates-title {
    /* background: #006800;*/
    /* background-color: rgba(177, 0, 0, 0.9); */
    background-color: #2c5796;
    border-radius: unset;
    border: 2px solid black;
    margin: 0.2em;
}

.program-title {
    /* background: rgba(177, 0, 0, 0.9); */
    background-color: #8a1b1a;
    border: 2px solid black;
    margin: 0.2em;
}

.divider {
    border: none;
    height: 2px;
    background-color: rgb(0 0 0 / 30%);
    margin: 5px 0;
    border-radius: 1px;
}

.WTMFY-DEMO {
    color: #00ff66;
}

.WIM-DEMO-TITLE {
    color: rgb(0, 255, 102);
}

.WIM-DEMO {
    background-color: rgba(0, 255, 102, 0.10);
    border-left: 2px solid rgb(0, 255, 102);
    padding-left: 10px;
    margin: 0;
    height: 100%;
}

.WTMFY-INFO {
    color: #92bfff;
}

.WIM-INFO-TITLE {
    color: #92bfff;
}

.WIM-INFO {
    background-color: rgba(0 152 255, 0.10);
    border-left: 2px solid rgb(0 152 255);
    padding-left: 10px;
    margin: 0;
    height: fit-content;
}

.cosign {
    color: aqua;
}

.reso-num-demo {
    background-color: rgb(0 93 15);
}

.reso-num-info {
    background-color: #0472d1;
}

.reso-num-undemo {
    background-color: #930000;
}

.WTMFY-UNDEMO {
    color: rgb(255 255 255);
}

.WIM-UNDEMO-TITLE {
    color: rgb(255 255 255);
}

.WIM-UNDEMO {
    background-color: rgb(237 0 0 / 10%);
    border-left: 2px solid rgb(255, 0, 0);
    padding-left: 10px;
    margin: 0;
    height: 100%;
}

.location_link {
    color: white;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-link:hover {
    background-color: #0056b3;
}

.resolution-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.prop-text-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.prop-text-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

@keyframes fa-beat {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.1);
    }
    15% {
        transform: scale(1.2);
    }
    49% {
        transform: scale(1.3);
    }
    75% {
        transform: scale(1.2);
    }
    85% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.fa-beat {
    color: red;
    margin-left: 5px;
    margin-right: 5px;
    animation: fa-beat 1s ease infinite;
}

.fa-heart {
    --fa: "\f004";
}

.fa-1x {
    font-size: 1em;
}

.badge {
    color: rgb(43, 43, 43);
    font-weight: bolder;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

.reso-badge {
    background-color: #00a0ab;
}

.bylaws-badge {
    background-color: #ff6145;
}

.sign-badge {
    background-color: #007730;
}

.amend-badge {
    background-color: #ffe600;
}

.badge-ul {
    list-style-type: none;
    display: inline-flex;
    width: 100%;
    margin: 0px;
    flex-direction: row;
    padding: 0px;
    flex-wrap: wrap;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.badge-li {
    margin: 0.4rem;
}

.tooltiptext {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    background: rgba(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 6px 10px;
    border-radius: 1rem;
    min-width: 10vw;
    max-width: 50vw;
    z-index: 1000;
    left: 0;
}

.badge:hover .tooltiptext {
    visibility: visible;
}

.signatory-table {
    width: 100%;
    table-layout: fixed;
}

.signatory-li {
    list-style-type: none;
    z-index: 2;
    position: relative;
}

th,
td {
    width: 33.33%;
    text-align: center;
    vertical-align: top;
    border: 1px solid black;
}

.signatory-ul {
    text-align: center;
    display: inline-block;
}

.mug {
    color: black;
    font-weight: bold;
    background-color: #6e8cfc;
    z-index: 0;
}

.bnr-header {
    color: black;
    font-weight: bold;
    background-color: #db3e39;
}

.bnr-body {
    color: black;
    font-weight: bold;
    background-color: white;
}

.ind-header {
    color: black;
    font-weight: bold;
    background-color: white;
}

.ind-body {
    color: black;
    font-weight: bold;
    background-color: white;
}

.mug-logo {
    float: right;
    position: relative;
    z-index: 1;
}

.bnr-logo {
    float: right;
    position: relative;
    z-index: 1;
}

.mobile-header {
    display: none;
}

@media screen and (max-width: 600px) {
    .badge {
        margin: 0.2rem;
    }
}

@media (max-width: 1000px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal {
        width: 95%;
    }
    .program-grid-container-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .program-grid-container-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .program-grid-container-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal {
        width: 92%;
    }
    .program-grid-container-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .program-grid-container-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .program-grid-container-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .candidate-img {
        height: 300px;
    }
    .badge {
        margin: 0.2rem;
    }
    .convention-div {
        max-width: 100%;
    }
    .mug-logo {
        float: unset;
    }
    .bnr-logo {
        float: unset;
    }
    .signatory-ul {
        display: block;
    }
    .mobile-header {
        display: block;
    }
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
        width: 100%;
    }
    thead tr {
        display: none;
        /* hide headers */
    }
    tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }
    td {
        text-align: center;
        position: relative;
        box-sizing: border-box;
    }
    td::before {
        left: 10px;
        width: 45%;
        padding-right: 10px;
        font-weight: bold;
        white-space: normal;
    }
    .peoplePowerFont {
        font-size: 5em;
        text-align: center;
    }
    .modal {
        width: 95%;
        padding: 0.5em;
    }
    .modal-body {
        font-size: 1.1em;
    }
    .modal-img {
        height: 300px;
    }
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .program-grid-container-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .program-grid-container-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .program-grid-container-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .program-img {
        height: 209px;
    }
    .card-title {
        font-size: 1.5em !important
    }
    .program-card-text {
        -webkit-line-clamp: unset;
        overflow: unset;
        p {
            font-size: 1.1em !important;
        }
    }
    .champions {
        p {
            font-size: 1em;
        }
    }
}