/* =========================================================
   Header
   Keeps logo-title-logo layout on smaller screens
   ========================================================= */

.site-header-row {
    flex-wrap: nowrap;
    align-items: center;
}

.site-header-logo-col {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.site-header-title-col {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.site-header-logo {
    width: 90%;
    max-width: 130px;
    height: auto;
}

.site-header-title {
    text-align: center;
    padding-top: 1.5rem;
    margin-bottom: 0;
    font-size: clamp(0.9rem, 3.2vw, 2rem);
    line-height: 1.15;
    color: rgb(243, 172, 146);
    -webkit-text-stroke: 1px rgb(8, 248, 228);
}

.site-header-subtitle {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 0;
    font-size: clamp(0.75rem, 2.7vw, 1.7rem);
    line-height: 1.15;
    color: rgb(243, 172, 146);
    -webkit-text-stroke: 1px rgb(255, 248, 228);
}

.site-header-right {
    text-align: right;
}

@media (max-width: 575px) {
    .site-header-logo-col {
        padding-left: 0.35rem !important;
        padding-right: 0.35rem !important;
    }

    .site-header-title-col {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .site-header-logo {
        width: 100%;
        max-width: 70px;
    }

    .site-header-title {
        padding-top: 0.35rem;
        font-size: clamp(0.75rem, 3.6vw, 1rem);
        -webkit-text-stroke: 0.35px rgb(8, 248, 228);
    }

    .site-header-subtitle {
        padding-top: 0.25rem;
        font-size: clamp(0.65rem, 3.2vw, 0.9rem);
        -webkit-text-stroke: 0.35px rgb(255, 248, 228);
    }
}


/* =========================================================
   Navigation
   Prevents odd wrapping/compression on smaller screens
   ========================================================= */

.main-navbar {
    background-color: rgba(224, 123, 57, 0.6);
    font-family: Saira, sans-serif;
}

.main-navbar .navbar-nav {
    flex-wrap: wrap;
}

.main-navbar .nav-link {
    white-space: nowrap;
}

.main-navbar .dropdown-menu {
    background-color: rgba(224, 123, 57, 0.85);
}

.main-navbar .dropdown-item {
    color: purple;
    white-space: normal;
}

@media (max-width: 991px) {
    .main-navbar {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .main-navbar .navbar-nav {
        flex-wrap: nowrap;
    }

    .main-navbar .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

img {
    max-width: 100%;
}

.card {
    min-width: 0;
}

.row {
    min-width: 0;
}

.nav-item {
    padding: 5px;
    display: block;
}

.nav-item:hover {
    padding: 5px;
    display: block;
    background-color: #e16728;
}

blink {
    animation: blinker 0.6s linear infinite;
    color: #1c87c9;
    font-size: 25px;
}

.section-head {
   font-family: 'Saira'; 
   font-size:1.2rem; 
   font-weight:bold; 
   color:#983275; 
   margin-top:1rem; 
   margin-bottom: 0.2rem; 
   padding: 0.3rem; 
   border-bottom: 2px double #983275;
}

.subsection-head {
    font-family: 'Saira'; 
    font-size:1.1rem; 
    font-weight:bold; 
    color:#983275; 
    margin-top:1rem; 
    margin-bottom: 0.2rem; 
    padding: 0.3rem; 
    border-bottom: 2px double #983275;
}

@keyframes blinker {
    50% {
	opacity: 0;
    }
}

.blink-one {
    animation: blinker-one 1s linear infinite;
}

@keyframes blinker-one {
    0% {
	opacity: 0;
    }
}

