/*
Theme Name: Bootstrap Basic
Theme URI: https://rundiz.com
Author: Rundiz-WP team
Author URI: https://github.com/Rundiz-WP
Description: Bootstrap v.3 basic theme for developers to build their new theme very fast and easy. To follow what was changed, please look for <a href="https://github.com/Rundiz-WP/bootstrap-basic" target="commits">commits</a> of this theme at Github or changelog.md file that come with the theme.
Version: 1.2.6
Requires PHP: 5.4
Requires at least: 4.0
Tested up to: 6.6
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: bootstrap-basic
Domain Path: /languages/
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-menu, featured-images, front-page-post-form, post-formats, threaded-comments, translation-ready

This theme built with Twitter Bootstrap v.3. It is basic theme with basic style for build new theme with Bootstrap.

*/


/*
Required WordPress CSS
*/

:root {
            --cooperjur-green: #0A323C;
            --cooperjur-yellow: #FFCC00;
            --cooperjur-light-green: #1A4350;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .top-bar {
            background-color: #333;
            color: white;
            font-size: 0.9rem;
        }
        
        .navbar {
               background-color: var(--cooperjur-green);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            max-height: 60px;
        }
        
        .nav-link {
            color: #fff !important;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: #A2AB8E !important;
        }
        
        .dropdown-menu {
            border-radius: 0;
            border-top: 3px solid #A2AB8E;
        }
        
        .hero-section {
            position: relative;
          
            overflow: hidden;
        }
        
        .hero-carousel .carousel-item {
           
            background-size: cover;
            background-position: center;
        }
        
       
        
        .hero-content {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 100%;
            z-index: 2;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .btn-cooperjur {
            background-color: var(--cooperjur-green);
            color: white;
            border-radius: 30px;
            padding: 8px 25px;
            font-weight: 500;
            border: none;
        }
        
        .btn-cooperjur:hover {
            background-color: var(--cooperjur-light-green);
            color: white;
        }
        
        .feature-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--cooperjur-green);
            margin-bottom: 15px;
        }
        
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-date {
            color: var(--cooperjur-green);
            font-weight: 500;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--cooperjur-green);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--cooperjur-yellow);
        }
        
        .footer {
            background-color: var(--cooperjur-green);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--cooperjur-yellow);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--cooperjur-yellow);
            color: var(--cooperjur-green);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        
        .quick-links {
            background-color: #f8f9fa;
            padding: 30px 0;
        }
        
        .quick-link-item {
            text-align: center;
            padding: 15px;
            transition: transform 0.3s;
        }
        
        .quick-link-item:hover {
            transform: translateY(-5px);
        }
        
        .quick-link-icon {
            width: 60px;
            height: 60px;
            background-color: var(--cooperjur-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }
        
        .quick-link-title {
            font-weight: 600;
            color: var(--cooperjur-green);
        }
        
        @media (max-width: 768px) {
        
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }

.article-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .article-meta {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        .article-body {
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .article-image {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 5px;
        }
