/* ========================================
   FOOTER COMPACT - DESIGN GLASSMORPHISME
   Styles pour le footer public harmonisé avec la navigation
   ======================================== */

/* Footer principal */
.glassmorphism-footer {
    position: relative;
    padding: 1.5rem 0;
    margin-top: 3rem;
    background: rgba(26, 26, 26, 0.88) !important;
    backdrop-filter: blur(14px);
    border-top: 2px solid rgba(184, 115, 51, 0.35);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.footer-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

/* Branding */
.footer-brand-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand-compact:hover .footer-logo {
    opacity: 0.9;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    justify-content: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #b87333 0%, #cd7f32 50%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    position: relative;
    filter: contrast(1.1) saturate(0.9);
}

.footer-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(0.5px);
}

.footer-description {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.6px;
    line-height: 1.2;
}

/* Liens légaux */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.legal-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.legal-link:hover {
    color: #b87333;
    transform: translateY(-1px);
}

.separator {
    color: #666;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(184, 115, 51, 0.1);
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: 50%;
    color: #b87333;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(184, 115, 51, 0.2);
    border-color: #b87333;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

/* Copyright */
.footer-copyright {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer-copyright p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Desktop large */
@media (max-width: 1200px) {
    .footer-compact {
        gap: 1.5rem;
    }
    
    .footer-legal-links {
        gap: 0.8rem;
    }
}

/* Tablette */
@media (max-width: 992px) {
    .footer-compact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-brand-compact {
        justify-content: center;
    }
    
    .footer-legal-links {
        order: 2;
        justify-content: center;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-copyright {
        order: 4;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .glassmorphism-footer {
        padding: 1rem 0;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
    
    .footer-social {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Mobile petit */
@media (max-width: 480px) {
    .footer-compact {
        gap: 0.8rem;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-legal-links {
        font-size: 0.8rem;
    }
}

