/*
font-family: 'Bebas Neue', sans-serif;
font-family: 'Fira Sans', sans-serif;
font-family: 'Roboto', sans-serif;
*/

:root {
    /* Fonts */
    --ab-title-font: 'Bebas Neue', sans-serif;
    --ab-subtitle-font: 'Fira Sans', sans-serif;
    --ab-heading-font: 'Bebas Neue', sans-serif;
    --ab-body-font: 'Roboto', sans-serif;

    /* Basic Colors */
    --ab-dark-color: #212121;
    --ab-light-color: #deeefb;
    --ab-background-color: rgba(250, 250, 250, 0.8);

    /* Text Styles*/
    --ab-font-size: 1.2rem;
    --ab-font-weight: 400;
    --ab-line-height: 1.5rem;
    --ab-title-color: var(--ab-dark-color);


}



/* Element Overrides */

body {
    font-family: var(--ab-body-font);
    font-size: var(--ab-font-size);
    font-weight: var(--ab-font-weight);
    line-height: var(--ab-line-height);
    color: var(--ab-dark-color);
    background: var(--ab-background-color);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: var(--ab-heading-font);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ab-title-color);
    letter-spacing: .1rem;
}

a {
    color: var(--ab-theme-500);
}

a:hover {
    color: var(--ab-theme-400);
}

main {
    margin-bottom: 5rem;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn-primary {
    --bs-btn-bg: var(--ab-theme-600);
    --bs-btn-border-color: var(--ab-theme-600);
    --bs-btn-hover-bg: var(--ab-theme-700);
    --bs-btn-hover-border-color: var(--ab-theme-700);
    --bs-btn-active-bg: var(--ab-theme-800);
    --bs-btn-active-border-color: var(--ab-theme-800);

}

/* End Element Overrides */

/* Begin: Home Page */

#home {
    background-color: var(--ab-theme-900);
    background-image: url(/img/Valley\ Background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}

#homeCover {
    backdrop-filter: brightness(0.25) blur(4px);
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;

    /* backdrop filter for Safari */
    -webkit-backdrop-filter: brightness(0.35) blur(3px);
    /* backdrop filter for other browsers */
    backdrop-filter: brightness(0.35) blur(3px);

}

.mainLogo {
    height: 4em;
    padding-left: .08em;
}

.mainTitle,
.subTitle {
    color: var(--ab-light-color);
    text-transform: uppercase;
}

.mainTitle {
    font-family: var(--ab-title-font);
    font-size: 9rem;
    line-height: 4rem;
}

.subTitle {
    font-family: var(--ab-subtitle-font);
    font-size: 1.28rem;
    letter-spacing: .1rem;
    line-height: 1.1rem;
    font-weight: 300;
    text-align: center;

}


/* End Home Page */

/* Main Content */

.section-page {
    padding-top: 5rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: visible;
    margin-top: -3rem;
}

.section-page:nth-child(even),
.section-page:nth-child(even)>.container::after {
    background-color: var(--ab-theme-100);
}

.section-page:nth-child(odd),
.section-page:nth-child(odd)>.container::after {
    background-color: var(--ab-theme-150);
}

/* Section Dividers */

/* Curved Dividers */

.section-page>.container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    /* clip-path: ellipse(50% 100% at top center); */
    z-index: 1;
}

/* Angled Dividers */

.section-page:nth-child(even)>.container::after {
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.section-page:nth-child(odd)>.container::after {
    clip-path: polygon(100% 100%, 100% 0%, 0% 0%);
}

/* End Section Dividers */



/* End Main Content*/

/* Footer Styles */

.socialicons {
    font-size: 2rem;
    transition: color 0.35s;
}

.socialicons:hover {
    color: var(--ab-theme-core)
}

footer.fixed-bottom {
    background-color: var(--ab-theme-900)
}

footer .card {
    background-color: var(--ab-theme-800)
}

/* End Footer Styles */

/***** Start Media Queries ****/

/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* // Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {
    .mainTitle {
        font-size: 7rem;
        line-height: 5.5rem;
    }

    .subTitle {
        font-size: 1.7rem;
        line-height: 1.2rem;
        letter-spacing: 0.18rem;
        padding-top: .25rem;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

/**** END Media Queries ****/