/* Footer Mille Trois Cents - Styles */

.footer-container {
    width: 100%;
    background: white;
}

/* Section physique */
.physics-section {
    position: relative;
    height: 400px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    border-bottom: 2px solid #e0e0e0;
}

#physics-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#physics-canvas:active {
    cursor: grabbing;
}

.shape-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 10px;
    pointer-events: none;
    line-height: 1.2;
}

.shape-icon {
    font-size: 32px;
}

/* Section info */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 80px;
    background: #2c3e50;
    color: white;
}

.info-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-column p, .info-column a {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #ecf0f1;
    text-decoration: none;
}

.info-column a:hover {
    color: #3498db;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.contact-item span {
    margin-right: 10px;
    font-size: 20px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    background: #1a252f;
    padding: 20px 80px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
    margin: 0 15px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
}