/* =====================================================
   FOOTER STYLES - Footer komponenta
   ===================================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary, #0a0a0f) 0%, #050508 100%);
    padding: 4rem 0 0;
    margin-top: auto;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer__container {
    max-width: var(--container-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 1.5rem);
}

/* Footer Grid */
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 991px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__brand {
        align-items: center;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__desc {
        max-width: 100%;
        text-align: center;
    }
    
    .footer__description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__column {
        align-items: center;
        text-align: center;
    }
    
    .footer__title {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer__list {
        align-items: center;
    }
    
    .footer__link {
        justify-content: center;
    }
    
    .footer__link:hover {
        transform: none;
    }
    
    /* Links centriranje */
    .footer__links {
        align-items: center;
    }
    
    .footer__links a {
        justify-content: center;
        text-align: center;
    }
    
    .footer__links a::before {
        display: none;
    }
    
    .footer__links a:hover {
        transform: none;
    }
    
    /* Kontakt info centriranje */
    .footer__links span,
    .footer__info-item {
        justify-content: center !important;
        text-align: center;
    }
}

/* Footer Brand */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary, #fff);
}

.footer__logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer__logo:hover .footer__logo-img {
    transform: scale(1.05);
}

.footer__logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #ff6b35), var(--primary-dark, #e55a2b));
    border-radius: 12px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.footer__logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__description {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Footer Social */
.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--text-secondary, rgba(255,255,255,0.7));
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary, #fff);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Social Link Brand Colors */
.footer__social-link--facebook:hover {
    background: linear-gradient(135deg, #1877F2, #0d65d9);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.footer__social-link--instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

.footer__social-link--tiktok:hover {
    background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
    box-shadow: 0 8px 20px rgba(37, 244, 238, 0.3);
}

/* Footer Column */
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary, #fff);
    margin: 0;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted, rgba(255,255,255,0.5));
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--primary, #ff6b35);
    transform: translateX(4px);
}

.footer__link i {
    font-size: 0.85rem;
    width: 16px;
}

/* Footer Links Container - za direktne a elemente */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted, rgba(255,255,255,0.55));
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer__links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--primary, #ff6b35);
    font-weight: bold;
}

.footer__links a:hover {
    color: var(--primary, #ff6b35);
    transform: translateX(8px);
}

.footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__links a i {
    color: var(--primary, #ff6b35);
    opacity: 0.7;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer__links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Info Items (za kontakt info) */
.footer__info-item {
    color: var(--text-secondary, rgba(255,255,255,0.7));
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.footer__info-item i {
    color: var(--primary, #ff6b35);
}

.footer__info-item--muted {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer__links small {
    opacity: 0.7;
}

/* Footer Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__contact-item i {
    color: var(--primary, #ff6b35);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.9rem;
    margin: 0;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__bottom-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__bottom-link:hover {
    color: var(--primary, #ff6b35);
}

/* App Download Badges */
.footer__apps {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer__app-badge {
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer__app-badge:hover {
    transform: scale(1.05);
}

/* Newsletter */
.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer__newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer__newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.footer__newsletter-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   PRIJATELJI SAJTA - Site Friends Section
   ===================================================== */

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
    
    
    
    
    
    
    
    
    
    
}

/* =====================================================
   SITEMAP SECTION
   ===================================================== */

.footer__sitemap {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.footer__sitemap .footer__title {
    text-align: center;
    margin-bottom: 30px;
}

.footer__sitemap .footer__title i {
    margin-right: 8px;
    color: var(--primary);
}

.footer__sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer__sitemap-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__sitemap-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    margin: 0 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.footer__sitemap-column a {
    color: var(--text-muted, rgba(255,255,255,0.5));
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer__sitemap-column a:hover {
    color: var(--primary, #ff6b35);
    padding-left: 8px;
}

@media (max-width: 992px) {
    .footer__sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__sitemap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer__sitemap-column {
        text-align: center;
    }
    
    .footer__sitemap-column a:hover {
        padding-left: 0;
    }
}

/* =====================================================
   LANDSCAPE & ADDITIONAL RESPONSIVE STYLES
   ===================================================== */

/* Landscape mode */
@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer__grid {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer__title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer__links a {
        padding: 0.35rem 0;
        font-size: 0.85rem;
    }
    
    
}

/* Small mobile */
@media (max-width: 375px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer__title {
        font-size: 1rem;
    }
    
    .footer__links a {
        font-size: 0.9rem;
    }
    
    .footer__social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer__bottom p {
        font-size: 0.85rem;
    }
}

/* Decorative Elements */
.footer__decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.03;
}

.footer__decoration--1 {
    top: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    filter: blur(100px);
    border-radius: 50%;
}

.footer__decoration--2 {
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    filter: blur(80px);
    border-radius: 50%;
}
