/*imports roboto*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* root */
/*og purple: #6A498E */
/* og gold: #F4BD1D*/
:root {
    --purple: #4C355F;
    --gold: #F7CE55;
    font-family: "Roboto", sans-serif;
}

::selection {
    background-color: rgba(247, 206, 85, 0.8);
}

.btn-primary {
    --bs-btn-color: var(--gold) !important;
    --bs-btn-bg: var(--purple) !important;
    --bs-btn-border-color: var(--purple) !important;
    --bs-btn-hover-color: var(--purple) !important;
    --bs-btn-hover-bg: var(--purple)7 !important;
    --bs-btn-hover-border-color: var(--purple) !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: var(--gold) !important;
    --bs-btn-active-bg: var(--purple) !important;
    --bs-btn-active-border-color: var(--purple)e !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: var(--gold) !important;
    --bs-btn-disabled-bg: var(--purple) !important;
    --bs-btn-disabled-border-color: var(--purple) !important;
}

.accordion {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f7ce55' stroke-linecap='round' stroke-linejoin='round' transform='matrix(1%2c 0%2c 0%2c 1%2c 0%2c 0)'%3e%3cpath d='M2 5L8 11L14 5' fill='%23f7ce55'/%3e%3c/svg%3e") !important;
}

.accordionContainer {
    padding: 5% 5% 5% 5%;
}

audio {
    margin: 2% 15% 2% 20%;
}

/*typewriter animation effect*/
.typewriter {
    color: var(--purple);
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .15em solid var(--gold);
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    width: 0;
    max-width: 18rem;
    animation:
        typing 10s steps(100, end) infinite,
        blink-caret .8s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--gold)
    }
}

/*============================*/
/*nav*/
header {
    font-size: 1.2rem;
    font-family: "Roboto", sans-serif;
    height: 70px;
}

.desktop-nav {
    display: none;
}

.off-screen-menu {
    background-color: var(--purple);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    z-index: 2;
    padding-bottom: 100px;
}

.off-screen-menu ul li {
    list-style: none;
}

.off-screen-menu ul li a {
    text-decoration: underline;
    color: white;
}

.off-screen-menu ul li a:hover {
    text-decoration: none;
}

.off-screen-menu.active {
    right: 0;
    overflow: hidden;
}

/*hamburger menu*/
nav {
    padding: 1rem;
    display: flex;
}

.ham-menu-container {
    align-items: center;
}

.ham-menu {
    height: 45px;
    width: 45px;
    margin-left: auto;
    position: relative;
}

.ham-menu:hover {
    cursor: pointer;
}

.ham-menu span {
    height: 4px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

/*closed ham-menu*/
.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

/*opened ham-menu*/
.ham-menu.active span:nth-child(1) {
    z-index: 3;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    z-index: 3;
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    z-index: 3;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 2rem;
}

nav a:hover {
    text-decoration: underline;
    color: var(--purple);
}

/*svg social icons*/
svg {
    width: 40px;
    height: 40px;
}

svg:hover {
    fill: var(--purple);
}

.card-svg {
    fill: var(--gold) !important;
}

/* body */
body {
    padding: 0;
    margin: 0;
}

h3 {
    color: var(--gold);
}

.cardCustom>h2 {
    color: var(--gold);
}

.cardCustom>h3 {
    color: var(--gold);
}

.vid-container {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(106, 73, 142, 0.9);
    position: relative;
}

.index-main-body-parallax {
    /* The image used */
    background-image: url("../images/hero.webp");

    /* Set a specific height */
    min-height: 50vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 3%;
}

.banner-video {
    padding: 0;
    margin: 0;
    z-index: -1;
    opacity: 0.25;
}

.hero-header {
    position: absolute;
    padding: 15% 1% 1% 5%;
    left: 25%;
    right: 25%;
    text-align: center;
    overflow: none;
    z-index: 1;
    color: var(--gold);
    font-weight: bolder;
    font-size: 2.2rem;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}

.cardContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*margin-top: 8%;
    padding: 5%;*/
}

.cardCustom {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--purple);
    color: white;
    margin: 2% 5% 3% 5%;
    padding: 3% 2% 3% 2%;
    text-align: center;
    border-radius: 25px;
    box-shadow: 5px 10px 8px #474747;
    vertical-align: top;
    transition: box-shadow 0.5s, transform 0.3s;
}

.cardCustom:hover {
    box-shadow: 5px 15px 12px var(--gold);
    transform: scale(1.05);
}

.banner {
    height: 8vh;
    width: auto;
    background-color: var(--purple);
    justify-content: center;
    display: flex;
    position: relative;
}

.bannerMiddle {
    display: none;
}

.bannerh2div {
    height: 10vh;
    width: auto;
    background-color: white;
    justify-content: center;
    display: flex;
    position: relative;
}

.bannerTabletAndMobile {
    height: 8vh;
    width: auto;
    background-color: white;
    justify-content: center;
    display: flex;
    position: relative;
    margin: 5px 0px 5px 0px;
}

.center-container {
    height: 12vh;
    width: auto;
    background-color: white;
    justify-content: center;
    display: flex;
    position: relative;
    margin: 5px 5px 5px 5px;
    justify-content: flex-start;
}

.h1-banner {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--gold);
}

.mid-banner-header {
    margin: 0 2% 0px 2%;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--purple);
}

.sub-banner {
    color: var(--purple);
    font-weight: bold;
}

/*news page*/
.newsSection {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.newsStory {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
    padding: 1rem;
    margin: 0;
    height: 100%;
}

.newsTextContent {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.newsImageAndDate {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: black;
    font-style: italic;
}

.newsImg {
    height: auto;
    width: auto;
    max-width: 125px;
    max-height: 125px;
}

.newsTitle {
    color: var(--purple);
}

.newsAuthor {
    color: lightslategrey;
    font-style: italic;
}

/* News story links */
.newsStoryLink {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}

.newsStoryLink:hover {
    transform: translateX(6px);
    color: inherit;
}

.newsStoryLink:hover .newsTitle {
    text-decoration: underline;
}

.read-more {
    color: var(--purple);
    font-weight: 600;
    margin-top: auto;
}

/* Story detail page */
.story-article {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

.story-hero {
    width: 100%;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.story-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-content {
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.story-title {
    color: var(--purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.story-meta {
    display: flex;
    gap: 1.5rem;
    color: grey;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.story-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.story-body p {
    margin-bottom: 1.25rem;
}

.back-link {
    display: inline-block;
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    margin: 0.75rem 0;
}

.back-link:hover {
    text-decoration: underline;
    color: var(--purple);
}

.story-not-found {
    text-align: center;
    padding: 3rem 1.5rem;
}

.story-not-found h1 {
    color: var(--purple);
    margin-bottom: 1rem;
}

.story-not-found p {
    color: grey;
    margin-bottom: 2rem;
}


.mobileIframe {
    display: block;
}

.desktopIframe {
    display: none;
}

/*about page*/

.imagesDiagonal {
    width: 25%;
    height: 25%;
    margin: 0% 3% 3% 3%;
    border-radius: 25px;
    display: none;
}

.aboutSections {
    margin: 5% 5% 5% 5%;
}

.faqs {
    padding: 3% 3% 3% 3%;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background-color: var(--purple) !important;
}

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

.customCol>h2 {
    color: var(--purple);
}

.customRow {
    padding: 3% 2% 0% 2%;
    display: flex !important;
    flex-direction: row !important;
    list-style-type: none !important;
}

.customRowAltColor {
    border-radius: 25px;
    padding: 3% 2% 0% 2%;
    display: flex !important;
    flex-direction: row !important;
    list-style-type: none !important;
    background-color: #e6e6e6;
}

.customRowAltColor ul li {
    list-style-type: none !important;
}

.customRow ul li {
    list-style-type: none !important;
}

.socialFooter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none !important;
}

.socialFooter>ul {
    padding-left: 0;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    list-style-type: none !important;
}

.socialFooter>ul>li {
    padding: 10px 10px 10px 10px;
    list-style-type: none !important;
}


.dashboardContainer {
    padding: 3% 3% 3% 3%;
    margin: 3% 3% 3% 3%;
}

/*Contact*/
.FormBody {
    padding: 2% 5% 5% 5%;
}

.invalid-feedback {
    border-color: rgba(216, 112, 147, 0.6) !important;
    border-width: 2px 2px 2px 2px;
}

.was-validated {
    border-color: rgba(144, 238, 144, 0.6) !important;
    border-width: 2px 2px 2px 2px;
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--gold);
    padding: 2rem;
    line-height: 2.5rem;
    color: var(--purple);
    font-weight: 500;
}

footer a {
    color: var(--purple);
}

footer a:hover {
    font-weight: bolder;
}

.footerRow {
    display: flex;
    flex-direction: row;
    list-style: none;
}

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

/*shape divider I found*/
/*top*/
.custom-shape-divider-bottom-1733207733 {
    display: none;
}

.custom-shape-divider-bottom-1733207733 svg {
    display: none;
}

/*bottom*/
.custom-shape-divider-top-1733208014 {
    display: none;
}

.custom-shape-divider-top-1733208014 svg {
    display: none;
}
