/* ===== Dodatni stilovi za stranice ===== */

/* POSTS LIST */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-card-large {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    transition: var(--transition);
    position: relative;
}

.post-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan), var(--pink), var(--violet));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.post-card-large:hover::before {
    transform: scaleY(1);
}

.post-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.post-image-large {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.post-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-large {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    margin-bottom: 1rem;
}

.post-content-large h2 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* SINGLE POST */
.post-single {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.post-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--cyan), var(--pink), var(--violet), var(--orange));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.post-featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3));
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.post-single:hover .post-featured-image img {
    transform: scale(1.02);
}

.post-single .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-single .post-content p {
    margin-bottom: 1.5rem;
}

.post-single .post-content h2,
.post-single .post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.post-single .post-content h2 {
    font-size: 2rem;
    border-left: 4px solid var(--pink);
    padding-left: 1rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.back-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-link::before {
    content: '\2190';
    transition: var(--transition);
}

.back-link:hover {
    color: var(--violet);
    gap: 0.8rem;
}

.back-link:hover::before {
    transform: translateX(-5px);
}

/* ABOUT PAGE */
.content-wrapper {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.about-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
    border-left: 4px solid var(--cyan);
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

.highlight-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyan);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.highlight-box h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.highlight-box p {
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.values-section > .container {
    position: relative;
    z-index: 1;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    font-weight: 700;
}

.values-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--cyan);
    margin: 20px auto 0;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #e0e0e0;
}

.value-card:nth-child(1) {
    border-top-color: var(--cyan);
}

.value-card:nth-child(2) {
    border-top-color: var(--pink);
}

.value-card:nth-child(3) {
    border-top-color: var(--violet);
}

.value-card:nth-child(4) {
    border-top-color: var(--orange);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* PROGRAM PAGE */
.program-intro {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    border-left: 4px solid var(--pink);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: var(--white);
    color: var(--dark);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #e0e0e0;
}

.program-card:nth-child(1) {
    border-top-color: var(--cyan);
}

.program-card:nth-child(2) {
    border-top-color: var(--pink);
}

.program-card:nth-child(3) {
    border-top-color: var(--violet);
}

.program-card:nth-child(4) {
    border-top-color: var(--orange);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.program-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--cyan);
}

.activities-section {
    background: #fafafa;
    padding: 50px 0;
}

.activities-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    font-weight: 700;
}

.activities-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--pink);
    margin: 20px auto 0;
    border-radius: 2px;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.activity-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 3px solid var(--cyan);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.activity-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.schedule-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.schedule-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    font-weight: 700;
}

.schedule-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--violet);
    margin: 20px auto 0;
    border-radius: 2px;
}

.schedule {
    max-width: none;
    width: 100%;
    margin: 2rem auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.schedule-item:hover {
    background: rgba(76, 201, 240, 0.03);
    transform: translateX(5px);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: bold;
    color: var(--pink);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* GALLERY */
.category-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-divider {
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
    font-size: 0.9rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--pink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 200%;
    height: 200%;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--pink);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

#lightbox-caption {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
}

@keyframes zoomIn {
    from {transform: translate(-50%, -50%) scale(0.8); opacity: 0;}
    to {transform: translate(-50%, -50%) scale(1); opacity: 1;}
}

/* DOCUMENTS */
.document-category {
    margin-bottom: 3rem;
}

.document-category h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--cyan);
    font-size: 1.8rem;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 20px 0;
}

.document-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyan);
}

.document-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.document-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.document-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.document-info {
    flex-grow: 1;
}

.document-info h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.document-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.document-info small {
    color: var(--gray);
    font-size: 0.85rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cyan);
}

.contact-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 5px solid var(--cyan);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 0 0;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top-color: var(--pink);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.contact-card h3 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.contact-card a {
    color: var(--dark);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--pink);
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    border: none;
    box-shadow: var(--shadow-md);
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(247, 37, 133, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--cyan);
}

.map-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.map-placeholder {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

/* ALERTS */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    animation: slideInLeft 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.empty-state::before {
    content: '\1F50D';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

/* FAQ SECTION */
.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.75rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-answer {
    margin: 0;
    color: #666;
    line-height: 1.6;
    padding-left: 2.3rem;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .post-card-large {
        grid-template-columns: 1fr;
    }
    
    .post-content-large {
        padding: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}
