/* Global Footer Styles - ARCHTELIER INTERIORS® */

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(228, 197, 107, 0.1) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1rem, 5vw, 2rem);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: clamp(40px, 8vw, 60px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0 0;
    font-style: italic;
}

.footer-info {
    text-align: right;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.footer-authors {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-authors strong {
    color: #D4AF37;
    font-weight: 600;
}

.footer-osim {
    margin-top: 0.5rem;
}

.osim-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    text-decoration: none;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem;
    border-radius: 4px;
}

.osim-link:hover {
    color: #E4C56B;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

/* Footer Navigation (pentru pagini cu footer navigation) */
.footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

.footer-nav-btn i {
    font-size: 1.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Phone Footer Optimization */
@media (max-width: 480px) {
    .site-footer {
        padding: 0.5rem 0.8rem;
        position: fixed;
        bottom: 0;
    }

    .footer-content {
        gap: 0.6rem;
        padding: 0;
    }

    .footer-logo {
        gap: 0.5rem;
        padding: 4px;
    }

    .footer-logo-img {
        width: 28px;
        min-width: 28px;
    }

    .footer-brand h3 {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .footer-tagline {
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .footer-authors {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    .footer-osim {
        margin-top: 0.3rem;
    }

    .osim-link {
        font-size: 0.6rem;
        gap: 0.3rem;
        padding: 0.2rem;
    }

    .osim-link i {
        font-size: 0.9em;
    }

    .footer-nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .site-footer {
        padding: 0.4rem 0.5rem;
    }

    .footer-logo-img {
        width: 24px;
        min-width: 24px;
    }

    .footer-brand h3 {
        font-size: 0.75rem;
    }

    .footer-tagline {
        font-size: 0.55rem;
    }

    .footer-copyright,
    .footer-authors {
        font-size: 0.58rem;
    }

    .osim-link {
        font-size: 0.55rem;
    }

    .footer-nav-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }
}
