/* Main Site CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Quicksand:wght@300..700&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Quicksand weight between 300 and 900 */
/* Inter weight between 100 and 700 */

/* Header and Body CSS */
body {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #495057;
    background-color: #ffffff;

    ;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Quicksand", "Inter", sans-serif;
    font-weight: 400;
    color: rgb(33, 37, 41);
}

.navbar-brand {
    width: 27px;
}

a.nav-link.rounded-2:hover {
    background: #495057;
    color: #ffffff;
}

a.nav-link.active.rounded-2 {
    color: #0171e3;
}

/* .navbar-brand {
    font-family: "Ubuntu Mono", sans-serif;
    font-size: 1.5em;
    background: #000000;
    color: #ffffff;
    padding: 0 7px 0 7px !important;
}

.navbar-brand:hover {
    color: #cccccc !important;
}

.navbar-brand:visited {
    color: #ffffff;
} */

a {
    text-decoration: none;
}

#navBarSiteLogo {
    width: 50px;
    border-radius: 50%;
}

#navBar {
    background: rgba(222, 226, 230, .8) !important;
    backdrop-filter: saturate(180%) blur(20px);
}

/* Body CSS */
.customShadow {
    box-shadow: 0 0 20px #343a40;
}

.customShadowLight {
    box-shadow: 0 0 20px #cccccc;
}

.customShadowApple {
    background-color: rgba(255, 255, 240, 0);
    box-shadow: 0 0 20px #cccccc;
}

.video-container, .img-container {
    position: relative;
}

/* .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
} */

.video-overlay, .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* font-size: 24px; */
    text-align: center;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3); */ /* Optional: add a semi-transparent background */
}

.video-overlay h1, .img-overlay h1 {
    color: white;
}

/* Optional: Add a semi-transparent background to the text */
.video-overlay-bg, .img-overlay-bg {
    background-color: rgba(0, 0, 0, 0.5);
    /* padding: 10px 20px; */
    /* border-radius: 10px; */
}

.row {
    padding-top: .50rem !important;
    padding-bottom: .50rem !important;
}

.cardList li {
    padding-bottom: .50rem;
}

.cardBtn {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    transition: 0.5s ease-in-out;
}

.cardBtnSize {
    width: 40px;
    height: 40px;
}

.cardBtn:hover {
    background: #cccccc !important;
}

.easeElement {
    opacity: 0;
    transition: 1s ease;
}

.resCardHeight {
    height: 400px;
}

.resDivIconHeight {
    height: 350px;
}

.resIconWidth {
    width: 140px;
}

.stronk {
    font-weight: 500;
}

/* Bootstrap Override 🤫 */
.list-group {
    --bs-list-group-border-color: none;
}

.btn-primary {
    background: #0171e3 !important;
}

.btn-primary:hover {
    background: #0076DF !important;
    border: 1px solid #0076DF !important;
}

.btn-primary {
    background: #006EDB !important;
    border: 1px solid #006EDB !important;
}

/* Index page CSS */

.expandBtn {
    background: #cccccc;
    border-radius: 50%
}

.infoPlus {
    transition: 0.3s ease-in-out;
}

.expandBtn:hover {
    background: #788490;
}

.expandBtn:active {
    background: #788490;
}

#detailsRow {
    /* display: none; */
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}

.infoDivs {
    opacity: 0;
    display: none;
    transition: 0.5s ease;
}

.indexCol {
    min-width: 180px;
}

/* Sys Admin Page CSS
   Styles added here are experimentalish */

.sysAdminCardHeight {
    height: 400px;
}

.sysAdminDivIconHeight {
    height: 350px;
}

.sysAdminIconWidth {
    width: 140px;
}

.btnBR {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 35px;
}

.rpb-0 {
    padding-bottom: 0 !important;
}

.rpt-0 {
    padding-top: 0 !important;
}

/* About Page CSS */

#aboutVidRow {
    transition: 1s ease;
    opacity: 0;
}

#aboutContentRow {
    transition: 1s ease;
    display: none;
    opacity: 0;
}

#profilePic, .catProfilePic {
    border-radius: 50%;
}

/* Contact Page CSS */
.bottomEmailIcons {
    width: 100%;
    max-width: 150px;;
}

#refreshCaptchaIcon {
    transition: 0.3s ease-in-out;
}

#captchaBorder {
    max-width: 160px;
}

#captchaError {
    display: none;
}

#contactFormDiv {
    transition: 0.3s ease-in-out;
}

#contactFormSuccessDiv {
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

#contactFormErrorDiv {
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

/* Reusable CSS */
.minPageHeight {
    min-height: 980px;
}

.frontOfCard {
    display: grid;
    opacity: 100;
    transition: 0.5s ease;
}

.backOfCard {
    opacity: 0;
    display: none;
    transition: 0.5s ease;
    padding: 1rem;
    overflow: scroll;
}

.modalWindow {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modalContent {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    margin: auto;
    padding: 20px;
    /* border: 1px solid #888; */
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 20px #343a40;
    transition: 0.3s ease-in-out;
}

.modalCloseBtn {
    width: 35px;
}

/* Footer CSS */

#cookiesBanner {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: saturate(180%) blur(20px);
}

#footer {
    border-top: 10px solid #cccccc;
    background: #495057;
    color: #cccccc;
    /* position: absolute;
    bottom: 0;
    width: 100%; */
}

#footer a {
    color: #ffffff;
}

#footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

#footer a:active {
    color: #ffffff;
    text-decoration: underline;
}

#footerIcon {
    background-color: #cccccc;
    border-radius: 50%;
    width: 100px;
    margin-left: auto;
    box-shadow: 0 0 15px #343a40;
    padding: 1.25rem;
}

#finalFooterRow {
    font-size: 12px;
    border-top: 1px solid #cccccc;
    margin-top: 1rem;
    margin-right: 5px;
    margin-left: 5px;
}

#finalFooterRow .col {
    padding: 0;
}