﻿
h1 {
    color: #FFFFFF;
}

.hero-section {
    background: #f8f9fa;
}

.sticky-sidebar {
    position: sticky;
    top: 100px; /* offset for header/navbar */
}

    .sticky-sidebar a {
        display: block;
        padding: 0.5rem 0;
        color: #333;
        text-decoration: none;
    }

        .sticky-sidebar a:hover {
            color: #f4a000; /* your accent color */
        }

.content-block {
    margin-bottom: 4rem;
}

.features .features-content .btn-feature {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

    .features .features-content .btn-feature span {
        margin-right: 8px;
    }

    .features .features-content .btn-feature i {
        transition: transform 0.3s ease;
    }

    .features .features-content .btn-feature:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    }

        .features .features-content .btn-feature:hover i {
            transform: translateX(5px);
        }

.btn-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .btn-feature i {
        margin-left: auto;
    }

.icon-svg {
    width: 36px !important;
    height: auto !important;
    margin-top: -12px;
}

.feature-blurb {
    margin-top: 8px;
}

.blog-heading-section {
    background-color: rgb(6 26 68 / 20%);
    border-radius: 12px;
    padding: 24px 48px;
}

.blog-hero-section {
    background-image: url('../Images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
    /* Optional: minimum height */
    .blog-hero-section .row {
        min-height: 60vh;
    }

    /* Optional: dark overlay for readability */
    .blog-hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .blog-hero-section > .container-fluid {
        position: relative;
        z-index: 1;
    }

.blog-header-image {
    border-radius: 4px;
/*    width: 100%;
    height: auto;*/

    width: 100%;
    height: 320px; /* visible height */
    object-fit: cover; /* crop instead of stretch */
    object-position: center;
    display: block;
}

.featured-content h1 {
    /*color: #E95C00;*/
}
.featured-content h2 {
    font-size: 20px;
}


.blog-content h1 {
    /*color: #E95C00;*/
}

.blog-content h2 {
    /*color: #E95C00;*/
}

.blog-content h3 {
    font-size: 22px;
    margin-top: 0px;
    font-weight: bold;
}

.blog-content .section {
    padding: 0px 0;
}
.blog-content a {
    font-weight: bolder;
}

.blog-content li::marker {
    font-size: 1.5em; /* bigger number */
    font-weight: bold;
    color: #E95C00;
}