/* General body and typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Hero section */
.hero-section {
    background-size: cover;
    background-position: center;
background: radial-gradient(circle at bottom, #143da3 20%, #050c2e 80%);  
    color: white;
 }

.hero-section .btn {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-section .btn:hover {
    transform: scale(1.05);
}

/* Cards adjustments */
.card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.card.border-success {
    border-width: 2px;
}

/* Sidebar adjustments */
.sidebar-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-wrapper h5 {
    border-bottom: 2px solid #ffc107;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Sidebar links hover */
.sidebar-wrapper a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-wrapper a:hover {
    color: #ffc107;
}

/* Buttons */
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    font-weight: 600;
}

.btn-warning:hover {
   /* background-color: #f8f9fa; */
    border-color: #ffc107; 
    transform: scale(1.06);
}

 /* Footer */
footer {
    font-size: 0.9rem;
}

    footer { background: #343a40; color: #fff; padding: 40px 0; }
    footer a { color: #ffc107; text-decoration: none; }
    footer a:hover { text-decoration: underline; }


/* Article images */
.article-container img {
    margin-bottom: 20px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .sidebar-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .sidebar-wrapper a {
        font-size: 0.95rem;
    }
}