/* Location Map Section Styles */
.location-map-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.location-map-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.location-map-section .section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #8B1538; /* Couleur bordeaux de la charte graphique */
    margin: 0;
    font-family: 'Museo', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.location-map-section .section-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(89%) saturate(2467%) hue-rotate(328deg) brightness(84%) contrast(92%);
    /* Filtre pour obtenir la couleur bordeaux #8B1538 */
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15); /* Ombre avec la couleur bordeaux */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.25);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-map-section {
        margin-top: 40px;
    }
    
    .location-map-section .section-subtitle {
        font-size: 22px;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .location-map-section .section-subtitle {
        font-size: 20px;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}
