﻿body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.40;
    color: #333;
    padding-left: 0;
    padding-right: 0;
}


h1 {
    color: #333;
    font-weight: bold;
}


a {
    color: #00F;
    text-decoration: none;
    /*color: #00483A;*/
}

    a.hover {
        color: #f0f8f7;
        text-decoration: underline;
    }

/*
**************************
Home Page Pop-Up
**************************
*/
.modal-body {
    text-align: justify;
}

    .modal-body img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

.custom-modal-dialog {
    max-width: 35%; /* Adjust this value as needed */
    min-width: 600px; /* Set the minimum width in pixels */
}

/*
**************************
Left Navigation 
**************************
*/
    .category-title {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Change this to your desired text color */
    margin-bottom: 5px; /* Adjust as needed */
}

/* Style for left navigation */
.left-nav ul,
.left-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.left-nav {
    font-family: Arial, sans-serif; /* Font family */
}

    /* Style for navigation links */
    .left-nav a {
        color: #333;
        display: block;
        padding: 0px;
        text-decoration: none;
    }

        /* Hover effect for navigation links */
        .left-nav a:hover {
            background-color: rgba(70, 76, 76, 0.3); /* Transparent green hover effect */
        }

    /* Style for the active page */
    .left-nav .active {
        color: #000;
        font-weight: bold; /* Bold font for the active page */
        background-color: rgba(0, 100, 25, 0.3); /* Transparent green hover effect */
    }

.submenu {
    display: block; /* Show submenu by default */
}

    .submenu .nav-link {
        padding-left: 1rem; /* Adjust indentation for submenu items */
    }


/* Add some margin to the right side of the main content */
.main-content {
    margin-right: 100px; /* Adjust the margin as needed */
}


/*
**************************
Breadcrums 
**************************
*/
.breadcrumb a {
    color: #333;
}

    /* Hover effect for navigation links */
    .breadcrumb a:hover {
        background-color: rgba(70, 76, 76, 0.3); /* Transparent green hover effect */
    }


/*
**************************
Navbar Settings 
**************************
*/
.navbar {
    padding: 5px; /* Adjust the top and bottom padding as needed */
}

    .navbar-brand {
    font-size: 14px; /* Adjust the font size of the brand */
}

.navbar-nav .nav-link {
    font-size: 13px; /* Adjust the font size of the navigation links */
    margin: 0 5px; /* Adjust the left and right margins of the navigation links */
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
}

.navbar-custom {
    background-color: rgba(0, 0, 0, .80); /* Adjust the alpha (4th value) for transparency */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Adjust z-index as needed */
}

    /* Optional: Add padding to the navbar */
    .navbar-custom .navbar-nav .nav-link {
        padding: 10px;
    }

/* Custom styles for dropdown menu */
.dropdown-menu a {
    color: #FFF;
}

    .dropdown-menu a:hover {
        background-color: #FFF;
        color: #333;
    }



/*
**************************
Pages 
**************************
*/

.pageBanner {
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 450px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}


/*
**************************
Cards
**************************
*/
.card-img-top {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-text {
    flex-grow: 1;
}

.card-title {
    min-height: calc(2 * 1.2em); /* Adjust 1.2em to the line height you use */
    line-height: 1.2em; /* This should match your line height */
    overflow: hidden;
}

.card-img {
    height: 300px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    width: 100%; /* Make sure it takes the full width of the card */
}

/*
**************************
Cold Case Cards
**************************
*/
.cold-case-card {
    background-color: #f8f9fa; /* Light background color */
}

.cold-case-img {
    width: 100%; /* Ensure the image takes the full width of its container */
    height: 350px; /* Set a fixed height for the image */
    object-fit: cover; /* Ensure the image covers the container without stretching */
    object-position: top left; /* Ensure the image loads from the top left */
}

.card-footer p {
    margin: 0; /* Ensure no margin around the paragraph */
}

.card-footer {
    background-color: #f8f9fa; /* Light background color for the card footer */
}

    .card-footer .btn.btn-success {
        font-weight: bold; /* Makes the text bold */
        color: white; /* Sets the text color to white */
    }

        .card-footer .btn.btn-success:hover {
            color: white; /* Ensures text stays white on hover */
        }

.card a {
    color: #343a40; /* Dark color for the link */
    text-decoration: none;
}

    .card a:hover {
        color: #007bff; /* Change color on hover */
        text-decoration: underline;
    }

.decade-group .carousel {
    position: relative;
}

.decade-group .position-absolute {
    z-index: 10; /* Ensure it's above other elements */
}



/*
**************************
Home Page 
**************************
*/

#video-bg {
    position: relative;
    min-width: 100%;
    width: auto;
    height: auto;
    background: transparent url(video-bg.jpg) no-repeat;
    background-size: cover;
}

video {
    display: block;
}

.video-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -100;
}

/*
**************************
Home Page Icon Bar
**************************
*/
.icon-link {
    background-color: #003128;
    padding: 5px 10px; /* Reduced vertical padding */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .icon-link:hover {
        background-color: #007B5F; /* Lighter hover color */
    }

.activeDisable {
    background-color: #04AA6D; /* Add an active/current color */
}



.homePageTitle {
    font-family: 'Bebas Neue';
    color: #003229;
    font-size: 3.0 em;
    text-transform: uppercase;
    border-top: solid 1px #000;
    line-height: unset;
}

.homePageNewsTitle {
    font-family: 'Bebas Neue';
    font-weight: 600;
    color: #003229;
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: unset;
    margin-bottom: 0; /* Remove bottom margin/padding */
}


.homePageNewsListGroupItem {
    border: 1px solid #dee2e6; /* Border color for unselected items */
    padding: 10px;
    margin-bottom: 10px; /* Adjust margin as needed */
}

.homePageNewsListGroupItem:hover {
    background-color: #f8f9fa; /* Change this to the desired hover background color */
}

.home-page-news-btn-group {
    margin-top: 10px; /* Adjust margin as needed */
}



.homePageCardTitle {
    font-family: 'Bebas Neue';
    font-weight: 600;
    color: #FFF;
    background-color: 003229;
    font-size: 1.5em;
    line-height: unset;
}



/*
**************************
iFrames 
**************************
*/
iframe {
    width: 100%;
    height: 1000px;
} 

    iframe.missing-person {
        height: 2000px;
    }

    iframe.sheriffs-ealerts {
        height: 1400px;
    }

    iframe.customer-service-satisfaction {
        height: 1400px;
    }

    iframe.location-map {
        height: 450px;
    }

    iframe.run-hide-fight {
        height: 600px;
    }

    iframe.reportRepossession {
        height: 2350px;
    }



/*
**************************
Timeline (Sheriff's Message)
**************************
*/
.timeline {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
}

    .timeline .timeline-item {
        position: relative;
    }

        .timeline .timeline-item:after {
            position: absolute;
            display: block;
            top: 0;
        }

        .timeline .timeline-item:after {
            background-color: hsl(0, 0%, 90%);
            left: -38px;
            border-radius: 50%;
            height: 11px;
            width: 11px;
            content: "";
        }

/*
Events 
*/
.event-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #003128;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.date-month {
    font-size: 24px;
}

.date-number {
    font-size: 40px;
    margin-top: 0; /* Remove top margin */
}

.event-details {
    flex: 1;
}

.event-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2px;
}

.event-location {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.read-more {
    font-weight: bold;
    color: #003128;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }


/*
Blocks - Images
*/

.image-container {
    position: relative;
    display: inline-block; /* Ensures that the container only takes the width of the image */
}

.caption {
    position: absolute;
    bottom: 0; /* Position the caption at the bottom of the container */
    left: 0; /* Position the caption at the left of the container */
    width: 100%; /* Ensure the caption takes the full width of the container */
    background-color: rgba(0, 0, 0, 0.5); /* Example background color */
    color: white; /* Example text color */
    padding: 10px; /* Example padding */
    box-sizing: border-box; /* Ensure padding is included in width calculation */
    text-align: center; /* Center the text horizontally */
    max-width: 100%; /* Ensure the caption does not exceed the width of the image */
    overflow: hidden; /* Hide any overflow text */
    white-space: nowrap; /* Prevent line breaks */
    text-overflow: ellipsis; /* Show ellipsis for overflow text */
}


/*
Bootstrap 
*/
.btn-success {
    background-color: #003128;
    border-color: #003128;
}

    .btn-success:hover {
        background-color: #365d56; /* Darken the color on hover if desired */
        border-color: #00261f; /* Darken the border color on hover if desired */
    }

/*
****************************
Accordion
****************************
*/
.accordion-button.collapsed .accordion-icon {
    filter: invert(100%);
}

/* Style the accordion buttons (headers) */
.accordion-button {
    color: #fff; /* Text color */
    border-color: #003128; /* Border color */
}

    /* Style the active accordion button (header) */
    .accordion-button.active {
        background-color: #00261f; /* Darker color for active header */
    }

.accordion-button:not(.active) {
    background-color: #003128;
    color: #fff; /* Text color */
    border-color: #003128; /* Border color */
}


/*
****************************
Locations 
****************************
*/
.box {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f0f8f7; /* Very soft green fill */
}

.circle {
    border-radius: 50%;
    color: #FFF;
    background-color: #00483A;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    font-size: 24px;
}

/*
****************************
Carousel Cold Cases
****************************
*/
.carousel-item {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px; /* Add some padding */
    border-radius: 10px; /* Optional: to make it look nicer */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Dark background for the control icons */
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    filter: invert(100%); /* Makes the icons dark */
    color: black;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        color: black;
    }


/*
****************************
ADA Screen Reader
****************************
*/
.sr-only {
    position: absolute;
    left: -1000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}