/**
 * BANDEAU CONTACT - FLUIDANSE
 * Bandeau fixe d'informations de contact visible en permanence
 */

/* === BANDEAU CONTACT FIXE === */
.contact-bandeau {
    position: fixed;
    top: 75px; /* Sous la navigation */
    left: 0;
    right: 0;
    background: var(--fluidanse-rouge);
    color: var(--fluidanse-blanc);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.contact-bandeau.visible {
    transform: translateY(0);
}

.contact-bandeau-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-bandeau-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: normal;
}

.contact-bandeau-info i {
    color: var(--fluidanse-beige);
    font-size: 1rem;
}

.contact-bandeau-info a {
    color: var(--fluidanse-blanc);
    text-decoration: none;
    transition: var(--transition);
    font-style: normal;
}

.contact-bandeau-info a:hover {
    color: var(--fluidanse-beige);
    text-decoration: underline;
}

.contact-bandeau-fermer {
    background: none;
    border: none;
    color: var(--fluidanse-blanc);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-weight: bold;
}

.contact-bandeau-fermer:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.contact-bandeau-fermer:after {
    content: '×';
}

/* === BOUTON FLOTTANT POUR RÉAFFICHER === */
.contact-bouton-flottant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--fluidanse-rouge);
    color: var(--fluidanse-blanc);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 49, 47, 0.3);
    transition: var(--transition);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-texte);
}

.contact-bouton-flottant.visible {
    display: flex;
}

.contact-bouton-flottant:hover {
    background: var(--fluidanse-orange);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 49, 47, 0.5);
}

/* === AJUSTEMENT BODY === */
body.contact-bandeau-active {
    padding-top: 150px; /* Navigation + bandeau */
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .contact-bandeau {
        top: 60px; /* Navigation plus petite sur mobile */
    }
    
    .contact-bandeau-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-bandeau-info {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    body.contact-bandeau-active {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    .contact-bandeau-container {
        padding: 0 1rem;
    }
    
    .contact-bandeau-info {
        font-size: 0.75rem;
    }
    
    .contact-bouton-flottant {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
        bottom: 15px;
        right: 15px;
    }
} 