/**
 * Biografije Plugin CSS
 * Version: 1.0.3
 * Author: Hazmir Husejnovic
 */

/* Grid layout za biografije - 3 stupca */
.biografije-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.biografije-grid .biografija-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.biografije-grid .biografija-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.biografije-grid .biografija-slika {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.biografije-grid .biografija-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.biografije-grid .biografija-card:hover .biografija-slika img {
    transform: scale(1.05);
}

.biografije-grid .biografija-slika a {
    display: block;
    height: 100%;
}

.biografije-grid .biografija-sadrzaj {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.biografije-grid .biografija-naslov {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.biografije-grid .biografija-naslov a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.biografije-grid .biografija-naslov a:hover {
    color: #0073aa;
}

.biografije-grid .biografija-kratki-opis {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    
    /* Ograničenje na 3 reda */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8em;
}

.biografije-grid .biografija-akcije {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.biografije-grid .btn-full,
.biografije-grid .btn-video,
.biografije-grid .btn-youtube {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.biografije-grid .btn-full {
    background-color: #0073aa;
    color: white;
}

.biografije-grid .btn-full:hover {
    background-color: #005a87;
    color: white;
}

.biografije-grid .btn-video {
    background-color: #ff0000;
    color: white;
}

.biografije-grid .btn-video:hover {
    background-color: #cc0000;
    color: white;
}

.biografije-grid .btn-youtube {
    background-color: #c4302b;
    color: white;
}

.biografije-grid .btn-youtube:hover {
    background-color: #9e2622;
    color: white;
}

/* Modal stilovi */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #ff0000;
    background: rgba(0,0,0,0.8);
    transform: rotate(90deg);
}

#modalVideoContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: #000;
}

#modalVideoContainer iframe,
#modalVideoContainer video,
#modalVideoContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Full view stilovi */
.biografija-full-view {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.biografija-full-view .biografija-naslov {
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 20px 0;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 15px;
    line-height: 1.2;
}

.biografija-full-view .biografija-glavna-slika {
    margin: 30px 0;
    text-align: center;
}

.biografija-full-view .biografija-glavna-slika img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.biografija-full-view .biografija-full-opis {
    margin: 30px 0;
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.biografija-full-view .biografija-full-opis p {
    margin-bottom: 20px;
}

.biografija-full-view .biografija-full-opis img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.biografija-full-view .biografija-video-sekcija {
    margin: 40px 0;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

.biografija-full-view .biografija-video-sekcija h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.8rem;
}

.biografija-full-view .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.biografija-full-view .video-container iframe,
.biografija-full-view .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.biografija-full-view .biografija-youtube-sekcija {
    margin: 30px 0;
    text-align: center;
}

.biografija-full-view .btn-youtube-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c4302b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(196,48,43,0.3);
    border: none;
    cursor: pointer;
}

.biografija-full-view .btn-youtube-large:hover {
    background-color: #9e2622;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196,48,43,0.4);
    color: white;
}

.biografija-full-view .biografija-nazad {
    margin-top: 40px;
    text-align: center;
}

.biografija-full-view .biografija-nazad a {
    display: inline-block;
    padding: 10px 25px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.biografija-full-view .biografija-nazad a:hover {
    background: #e0e0e0;
    color: #000;
}

/* Paginacija */
.biografije-pagination {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.biografije-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.biografije-pagination .page-numbers.current {
    background: #0073aa;
    color: white;
}

.biografije-pagination .page-numbers:hover:not(.current) {
    background: #ddd;
}

/* Poruka kada nema biografija */
.no-biografije {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive dizajn */
@media (max-width: 1024px) {
    .biografije-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .biografije-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .biografije-grid .biografija-slika {
        height: 200px;
    }
    
    .close-modal {
        right: 20px;
        top: 20px;
        background: rgba(0,0,0,0.7);
    }
    
    .modal-video-wrapper {
        width: 95%;
        max-height: 90vh;
    }
    
    .biografija-full-view {
        padding: 20px;
    }
    
    .biografija-full-view .biografija-naslov {
        font-size: 2rem;
    }
    
    .biografija-full-view .biografija-video-sekcija {
        padding: 20px;
    }
    
    .biografija-full-view .btn-youtube-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .biografije-grid .biografija-naslov {
        font-size: 1.2rem;
    }
    
    .biografije-grid .btn-full,
    .biografije-grid .btn-video,
    .biografije-grid .btn-youtube {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .biografija-full-view .biografija-naslov {
        font-size: 1.5rem;
    }
    
    .biografija-full-view .biografija-full-opis {
        font-size: 1rem;
    }
    
    .biografija-full-view .btn-youtube-large {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .biografije-pagination .page-numbers {
        padding: 6px 12px;
        margin: 0 2px;
    }
}

/* Print stilovi */
@media print {
    .biografije-grid .btn-video,
    .biografije-grid .btn-youtube,
    .biografija-youtube-sekcija,
    .biografija-nazad,
    .modal {
        display: none !important;
    }
    
    .biografija-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .biografija-full-view {
        box-shadow: none;
        padding: 0;
    }
}
/* Dodatni stilovi za full view */
.biografija-kratki-opis-full {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.biografija-divider {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.biografija-full-opis {
    margin: 30px 0;
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.biografija-full-opis p {
    margin-bottom: 20px;
}

.biografija-full-opis h2, 
.biografija-full-opis h3, 
.biografija-full-opis h4 {
    margin: 30px 0 15px 0;
    color: #333;
}

.biografija-full-opis img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.biografija-full-opis ul, 
.biografija-full-opis ol {
    margin: 20px 0;
    padding-left: 30px;
}

.biografija-full-opis li {
    margin-bottom: 10px;
}

.biografija-full-opis blockquote {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    font-style: italic;
    color: #555;
}

.biografija-full-opis iframe {
    max-width: 100%;
}