/**
 * Elementor Bari Kluby Mapa - Styly s mapou v pozadí
 */

.bari-kluby-mapa-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.bari-kluby-mapa-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.bari-kluby-mapa-container {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.city-marker {
    position: absolute;
    z-index: 10;
    transition: transform 0.3s ease;
}

.city-marker:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    z-index: 100;
}

.city-icon {
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.city-marker:hover .city-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.city-marker-default {
    background-color: #e74c3c;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.city-marker:hover .city-marker-default {
    background-color: #c0392b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.city-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    z-index: 1000;
    white-space: normal;
}

.city-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: white;
}

.city-tooltip h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.city-tooltip p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.city-tooltip a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.city-tooltip a:hover {
    background: #2980b9;
}

/* Responzivní design */
@media (max-width: 768px) {
    .bari-kluby-mapa-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .bari-kluby-mapa-container {
        min-height: 400px;
    }
    
    .city-tooltip {
        min-width: 200px;
        padding: 12px;
        font-size: 12px;
    }
    
    .city-tooltip h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bari-kluby-mapa-container {
        min-height: 300px;
    }
    
    .city-tooltip {
        min-width: 180px;
        padding: 10px;
    }
}
