/* ============================================
   AREAS OF WORK - SEKCIJA STILOVI
   ============================================ */

.acdc-area-card {
    background-color: var(--acdc-card-bg, #fdfaf8);
    border: 1px solid var(--acdc-border, #f0e6e0);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acdc-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.08);
    border-color: var(--acdc-red, #800000);
}

.acdc-area-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border: 2px solid var(--acdc-border, #f0e6e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.acdc-area-icon-wrapper img.area-icon-img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.acdc-area-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--acdc-text-dark, #22252a);
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acdc-area-desc {
    font-size: 0.85rem;
    color: var(--acdc-text-muted, #5a6b7c);
    margin-bottom: 20px;
    line-height: 1.5;
}

.acdc-area-link {
    color: var(--acdc-red, #800000);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.acdc-area-link:hover {
    color: #660000;
}

.acdc-area-link i {
    transition: transform 0.2s ease;
}

.acdc-area-card:hover .acdc-area-link i {
    transform: translateX(4px);
}
.acdc-banner-btn:hover {
    transform: translateY(-2px);
    background-color: #660000 !important; /* Tamnija nijansa crvene */
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3) !important;
    color: #ffffff !important;
}
.acdc-banner-btn {
    transition: all 0.3s ease;
}

.acdc-banner-btn:hover {
    transform: translateY(-2px);
    background-color: #660000 !important;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3) !important;
    color: #ffffff !important;
}

/* Animacija strelice */
.btn-arrow-anim {
    transition: transform 0.3s ease;
}

.acdc-banner-btn:hover .btn-arrow-anim {
    transform: translateX(5px);
}
/* ============================================
   HOME - SEKCIJA VESTI (STILOVI)
   ============================================ */

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border-radius: 8px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.news-card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.news-card-img {
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-tag-badges-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.news-tag-badge {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.news-tag-badge:hover {
    transform: scale(1.1);
}

.news-tag-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.news-card-title a:hover {
    color: var(--acdc-red, #800000) !important;
}

.news-read-more {
    text-decoration: none !important;
    transition: gap 0.2s ease;
}

.news-read-more:hover {
    color: #550000 !important;
}

.news-read-more i {
    transition: transform 0.2s ease;
}

.news-card:hover .news-read-more i {
    transform: translateX(4px);
}
.btn-outline-danger:hover {
    background-color: var(--acdc-red, #800000) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.2);
}
.btn-outline-danger {
    transition: all 0.3s ease;
}

.btn-outline-danger i {
    transition: transform 0.2s ease;
}

.btn-outline-danger:hover i {
    transform: translateX(4px);
}
/* ============================================
   HOME - SEKCIJA DONATORI I PARTNERI
   ============================================ */

.slicker-slider .donor-card-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.slicker-slider .donor-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(128, 0, 0, 0.2);
}

.slicker-slider img.max-height-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slicker-slider .donor-card-item:hover img.max-height-logo {
    filter: grayscale(0%);
    opacity: 1;
}