/* Blog General Styles */
body {
    background-color: #f4f6f8;
    color: #333;
}

/* Custom Gradient Nav */
.custom-gradient-nav {
    background: linear-gradient(90deg, #007bff, #0056b3);
}
.nav-link { 
    transition: color 0.3s ease; 
}

.nav-link:hover { 
    color: #fff !important; /* Bijela boja pri hoveru */
    text-decoration: underline; /* Podcrtavanje */
}

/* Footer Styling */
.custom-gradient-footer {
    background: linear-gradient(to right, #0056b3, #002d5e);
    color: #fff;
    margin-top: 40px;
}

.footer-custom-link {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-custom-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article Styling */
article {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Links and Buttons */
.btn-outline-info {
    border-radius: 20px !important;
    border-width: 2px !important;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* List group (za naslovnicu) */
.list-group-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.list-group-item:hover {
    transform: translateX(5px);
    background-color: #f8f9fa;
}

.blog-card { 
    transition: transform 0.2s, box-shadow 0.2s; 
    border: none; 
    border-radius: 12px; 
    overflow: hidden;
}
.blog-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; 
}
/* Uljepšavanje slike */
.card-img-wrapper { height: 180px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
/* Tipografija */
.card-title { font-size: 1.25rem; font-weight: 700; color: #2d3436; }
.text-muted { font-size: 0.95rem; line-height: 1.5; color: #636e72; }