/* =====================================================
   STYLES DU FOOTER ET ICÔNES MOBILES
   Garantit une apparence identique sur toutes les pages
   ===================================================== */

/* Footer amélioré - Styles identiques à index.php */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 60px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

/* Section À propos cachée */
.about-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #d4af37;
    opacity: 1;
}

/* Icônes flottantes mobile - Styles identiques à index.php */
.mobile-contact-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-contact-icon.phone {
    background: linear-gradient(135deg, #25D366, #20b954);
}

.mobile-contact-icon.email {
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.mobile-contact-icon:hover {
    transform: scale(1.1);
}

.mobile-admin-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-admin-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

/* Affichage des icônes mobiles sur mobile */
@media (max-width: 768px) {
    .mobile-contact-icons {
        display: flex;
    }
    
    .mobile-admin-icon {
        display: flex;
    }
}

/* Styles de base du footer pour compatibilité */
.footer {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #cccccc;
}
