


@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

h1,h2,h3,h4,h5,h6{
     font-family: "Lexend Deca", sans-serif;
}


::selection {
    background-color: var(--brown);
    color: var(--light-text)
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-orange);
    color: var(--light-text);
    padding: 8px 0;
    font-size: 0.85em;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar .container-fluid {
    /* Allow top-bar to be full width */
    width: 100%;
    max-width: 1200px;
    /* Content within max-width */
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span,
.header-right-info span {
    margin-right: 20px;
}

.header-right-info span:last-child {
    margin-right: 0;
}

.contact-info i,
.header-right-info i {
    margin-right: 5px;
}

/* --- Main Navbar --- */
.main-navbar {
    background-color: var(--dark-bg);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "Lexend Deca", sans-serif !important;
}

.main-navbar .container-fluid {
    /* Allow navbar to be full width */
    width: 100%;
    max-width: 1200px;
    /* Content within max-width */
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
    /* Make children full height */
}

.logo-area {
    background-color: var(--light-text);
    display: flex;
    align-items: center;
    padding: 0 45px 0 25px;
    /* T/B R L - Right padding for curve visual */
    position: relative;
    text-decoration: none;
    margin-left: -15px;
    /* Counteract container padding for full bleed illusion */
}

.logo-area::before,
.logo-area::after {
    content: '';
    position: absolute;
    right: 0;
    width: 22px;
    height: calc(var(--navbar-height) / 2);
    background-color: var(--dark-bg);
}

.logo-area::before {
    top: 0;
    border-bottom-left-radius: 22px;
}

.logo-area::after {
    bottom: 0;
    border-top-left-radius: 22px;
}

.logo-icon {
    color: var(--primary-orange);
    font-size: 26px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 26px;
    color: var(--dark-bg);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.logo-text b {
    font-weight: 700;
}

.nav-and-actions {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}

.main-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav-links li a:hover,
.main-nav-links li a.active {
    color: var(--primary-orange);
}

.nav-secondary-actions {
    display: flex;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.1em;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
}

.search-btn:hover {
    color: var(--primary-orange);
}

.btn-quote-nav {
    background-color: var(--light-text);
    color: var(--dark-bg);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-quote-nav:hover {
    background-color: var(--primary-orange);
    color: var(--light-text);
}

.mobile-menu-toggle {
    display: none;
    margin-left: auto;
}

/* --- Page Banner --- */
.page-banner {
    background-image: url('https://images.unsplash.com/photo-1487611459768-bd414656ea10?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    /* Adjust padding as needed */
    position: relative;
    text-align: center;
    color: var(--light-text);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 25, 30, 0.75);
    /* Dark overlay */
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    /* Above overlay */
}

.banner-title {
    font-size: 3em;
    /* Title size */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.breadcrumbs-nav {
    display: inline-block;
    background-color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

.breadcrumbs-nav a,
.breadcrumbs-nav span {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs-nav a:hover {
    text-decoration: underline;
}

.breadcrumbs-nav .breadcrumb-icon {
    margin-right: 5px;
}

.breadcrumbs-nav .separator {
    margin: 0 8px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {

    /* Tablets and below */
    .main-navbar .container-fluid {
        position: relative;
    }

    .logo-area {
        margin-left: 0;
    }

    /* Reset margin for smaller screens */
    .nav-and-actions {
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-and-actions.active {
        display: flex;
    }

    .main-nav-links {
        flex-direction: column;
        width: 100%;
    }

    .main-nav-links li {
        width: 100%;
    }

    .main-nav-links li a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-secondary-actions {
        margin-top: 15px;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .search-btn {
        margin-bottom: 10px;
        padding-left: 0;
    }

    .btn-quote-nav {
        display: block;
        text-align: center;
        width: auto;
        margin-top: 5px;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--light-text);
        font-size: 1.5em;
        cursor: pointer;
        padding: 10px;
    }

    .banner-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {

    /* Smaller tablets / Large phones */
    .top-bar .container-fluid {
        flex-direction: column;
        align-items: center;
    }

    .top-bar {
        height: auto;
        padding: 10px 0;
    }

    .contact-info,
    .header-right-info {
        margin-bottom: 5px;
        text-align: center;
    }

    .header-right-info span {
        margin-right: 10px;
    }

    .banner-title {
        font-size: 2em;
    }

    .page-banner {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {

    /* Small phones */
    .logo-text,
    .logo-icon {
        font-size: 20px;
    }

    .logo-area {
        padding: 0 30px 0 10px;
    }

    .logo-area::before,
    .logo-area::after {
        width: 15px;
        border-radius: 15px 0 0 15px;
    }

    .banner-title {
        font-size: 1.8em;
    }

    .breadcrumbs-nav {
        font-size: 0.8em;
        padding: 8px 15px;
    }
}