/* Font Imports */
@font-face {
    font-family: 'Work Sans';
    src: url('/assets/font/Work_Sans/static/WorkSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Semi Bold';
    src: url('/assets/font/Work_Sans/static/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Extra Bold';
    src: url('/assets/font/Work_Sans/static/WorkSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


@font-face {
    font-family: 'Source Sans Pro';
    src: url('/assets/font/Source_Sans_3/static/SourceSans3-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro Bold';
    src: url('/assets/font/Source_Sans_3/static/SourceSans3-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro Italic';
    src: url('/assets/font/Source_Sans_3/static/SourceSans3-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro Italic Bold';
    src: url('/assets/font/Source_Sans_3/static/SourceSans3-BoldItalic.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro Semi Bold';
    src: url('/assets/font/Source_Sans_3/static/SourceSans3-SemiBold.ttf') format('truetype');
    font-style: normal;
}


/* Main Background with Fading Overlay */
body{
       font-family: 'Source Sans Pro', sans-serif !important;
       width: 100%
}

.navbar-brand > img {
    padding-top: 10px;
}

.main {
    position: relative;
    background: url('/assets/images/background-precisiondoor.jpg') no-repeat center center;
    background-size: cover;
    /* padding: 2rem; */
    min-height: 100vh;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); /* White overlay at 50% opacity */
    pointer-events: none; /* Allows interactions with elements inside .main */
    z-index: 1;
}

/* Ensures content is above the overlay */
.main > * {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.custom-header {
    background: #00523d;
    padding: 1rem 0;
    width: 100%;
    height: 130px;
}

.container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 50px; /* Keeps the logo aligned to the left */
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    padding-left: 50px
}

.brand-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: white;
    margin: 0;
    padding-left: 50px;
}

.select-loc-title {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 0;
}

/* Footer Styling */
.custom-footer {
    background-color: #134c3e;
    padding: 20px;
    text-align: center;
    width: 100%;
    color: #fff;
}

/* State and Location Styling */
.state-list {
    margin-top: 2rem;
    text-align: left;
}

.state-list h3 {
    color: #134c3e;
}

.state-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.state-list li {
    padding-left: 1.5rem;
    font-size: 1rem;
}

/* Typography */
.p {
    font-family: 'Source Sans Pro', sans-serif;
}

.align-center {
    text-align: center;
}

.font-bold {
    font-weight: bold !important;
}

.italic {
    font-style: italic;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: bolder;
}

/* Margin Utilities */
.ml-20 {
    margin-left: 20px;
}

.ml-5 {
    margin-top: 5px;
}

/* Padding Utilities */
.pt-15 {
    padding-top: 15px; 
}

/* Font Size Utilities */
.size-18 {
    font-size: 18px;
}

.size-20 {
    font-size: 20px;
}

.size-16 {
    font-size: 16px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1000px) {
    .custom-header {
        padding: 1rem;
        height: 100px;
    }
    .custom-footer {
        padding: 1rem;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-logo {
        max-width: 100px;
    }
    .navbar-brand{
        left: 0;
        padding-top: 15px;
    }
    .custom-header {
        background: #134c3e;
        padding-top: 15px;
        padding-bottom: 8px;
    }
    .custom-header img {
        content: url('/assets/images/logo-mobile-white.png.webp');
    }
    .brand-title {
        font-family: 'Work Sans', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        margin: 0;
        padding-left: 100px;
    }
    .brand-tagline {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1.0rem;
        font-style: italic;
        color: white;
        margin: 0;
        padding-left: 100px;
    }
}

@media screen and (max-width: 435px) {
    .brand-title {
        font-size: 1.2rem;
        padding-top: 10px;
    }
    .brand-tagline {
        font-size: 0.8rem;
    }
    .navbar-brand {
        left: -5px;
    }
    .navbar-brand > img {
        padding-top: 15px;
    }
}

@media screen and (max-width: 366px) {
    .navbar-brand > img {
        padding-top: 0;
    }
}


@media screen and (max-width: 424px) {
    .responsive-br {
        display: none;
    }
}