/* Styles communs pour le footer */
.footer {
    background: #2c2c2c;
    color: #F4E9D8;
    padding: 30px 20px 20px;
    margin-top: auto;
}

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

.footer-section h3 {
    color: #A9B88B;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #F4E9D8;
    text-decoration: none;
    line-height: 1.6;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #A9B88B;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(169, 184, 139, 0.2);
    font-size: 13px;
    color: #999;
}

/* Bouton de contact flottant */
.contact-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background-color: #A9B88B;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(169, 184, 139, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.contact-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(169, 184, 139, 0.4);
    background-color: #8B9A6B;
}

.contact-float i {
    display: none;
}

/* Modal Instagram */
.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.instagram-modal.show {
    opacity: 1;
    visibility: visible;
}

.instagram-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 30px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

.instagram-modal.show .instagram-modal-content {
    transform: scale(1);
}

.instagram-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.instagram-modal-close:hover {
    background: #f0f0f0;
    color: #666;
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB, #405DE6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    color: white;
}

.instagram-modal h3 {
    color: #2c2c2c;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.instagram-modal p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.instagram-later {
    background: transparent;
    color: #999;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.instagram-later:hover {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instagram-modal-content {
        padding: 20px;
    }
    
    .instagram-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}
