﻿:root {
    --primary: #3F6A72; /* DEEP SEA */
    --primary-rgb: 63, 106, 114;
    --secondary: #132D4A; /* DEEP BLUE */
    --brand-grey: #BBBBBD; /* ANCHOR GRAY */
    --brand-light: #DFDFE5; /*  Not the orginal, changed for contarst on deep sea - #BBBBBD ANCHOR GRAY */
}



@font-face {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: gotham, sans-serif;
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: gotham, sans-serif;
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "gotham", sans-serif;
    font-weight: 700;
    font-style: italic;
}


@font-face {
    font-family: "GTAmerica";
    src: url(/southbay/fonts/GTAmerica-ExpandedBlack.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "gotham";
}



/* #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(63, 106, 114, 0) 10%, rgba(63, 106, 114, .9) 80%, rgba(63, 106, 114, 1) 100%);
        height: 600px;
    }

.bottom-section {
    background-color: #ffffff;
}

    .bottom-section::before {
        top: 0;
        background: linear-gradient(360deg,rgba(63, 106, 114, 0) 10%, rgba(63, 106, 114, .9) 80%, rgba(63, 106, 114, 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;
}

@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 */


.font-heading {
    font-family: "GTAmerica";
}

.homepage-video-background {
    position: relative;
    background-image: url('/southbay/images/home/VideoHeader_2500.webp');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .homepage-video-background {
        background-image: url('/southbay/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: '';
    }