﻿:root {
    --primary: #F04E48; /* HOT ROD RED */
    --primary-rgb: 240, 78, 72;
    --secondary: #000000;
    /* --secondary: #0089A3;  ARUBA BLUE */
    --brand-grey: #99A7AF; /* STEEL */
    --brand-light: #FFFFFF;
}


/*@font-face {
    font-family: "Bebas-Neue";
    src: url('/trifecta/fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/

@font-face {
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: 600;
    font-style: italic;
}


@font-face {
    font-family: "Zuume-Bold-Italic";
    src: url(/trifecta/fonts/Zuume-Bold-Italic/zuume-bold-italic.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
}

body {
    font-family: "Bebas-Neue-Pro", Arial, sans-serif;
}

.text-small {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text-primary {
    color: var(--secondary) !important;
}
a {
    color: var(--secondary);
}
    .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1);
}



/* #region Gradient */
.gradient-section {
    position: relative;
    color: white;
    z-index: 0; /* Important to allow pseudo-elements on top */
    overflow: hidden;
}

.top-section {
    background-color: #000000;
}
    .top-section::after {
        bottom: 0;
        background: linear-gradient(180deg,rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .9) 80%, rgba(0, 0, 0, 1) 100%);
        height: 600px;
    }

.bottom-section {
    background-color: #ffffff;
}

    .bottom-section::before {
        top: 0;
        background: linear-gradient(360deg,rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .9) 80% , rgba(0, 0, 0, 1) 100%);
        height: 600px;
    }

/* Gradient overlay at top and bottom */
.gradient-section::before,
.gradient-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none; /* Ensure it doesn’t block content */
}

.gradient-content {
    position: relative;
    z-index: 3;
}

.bg-primary.text-white, .bg-primary .text-white, .text-brand-light {
    color: black !important;
}
.text-white-white {
    color: white !important;
}

.btn-primary {
    color: var(--secondary) !important;
}

    .btn-primary:hover, .btn-primary:focus {
        color: var(--secondary) !important;
    }


@media screen and (max-width: 1400px) {
    .bottom-section::before, .top-section::after {
        height: 500px;
    }
}

@media screen and (max-width: 1200px) {
    .bottom-section::before, .top-section::after {
        height: 400px;
    }
}

@media screen and (max-width: 992px) {
    .bottom-section::before, .top-section::after {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .bottom-section::before, .top-section::after {
        height: 350px;
    }
}

@media screen and (max-width: 575px) {
    .bottom-section::before, .top-section::after {
        height: 200px;
    }
}

/* #endregion Gradient */


/* sizes */
.text-large-header {
    font-size: 50px;
}

.text-xlarge-header {
    font-size: 80px;
}

.text-xxlarge-header {
    font-size: 100px;
}

@media screen and (max-width: 1023px) {
    .text-xxlarge-header {
        font-size: 80px;
    }
}

@media screen and (min-width: 576px) {
    .text-xxlarge-header {
        font-size: 60px;
    }
}
@media screen and (max-width: 425px) {
    .text-xxlarge-header {
        font-size: 50px;
    }
}


.text-icon-mid {
    font-size: 45px;
}

.text-icon-large {
    font-size: 60px;
}

html {
    font-size: 16px !important;
}
@media (min-width: 768px) {
    html {
        font-size: 18px !important;
    }
}


.font-heading {
    font-family: "Zuume-Bold-Italic";
}


.homepage-video-background {
    position: relative;
    background-image: url('/trifecta/images/home/VideoHeader_2500.webp');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .homepage-video-background {
        background-image: url('/trifecta/images/home/VideoHeader_1600.webp');
    }
}

    .bullseye-list li {
        display: flex;
        align-items: center;
        margin: 10px 0;
        line-height: 30px;
        list-style: none;
    }

        .bullseye-list li:before {
            display: block;
            flex-shrink: 0;
            width: 29px;
            height: 29px;
            margin-right: 10px;
            vertical-align: middle;
            background: url('/images/Bullet.png') no-repeat left center;
            background-size: contain;
            content: '';
        }