/**
 * Club Map Styles
 */

.club-map-container {
    width: 100%;
    position: relative;
}

.club-map {
    height: 600px;
    width: 100%;
}

/* Popup styles */
.club-popup {
    min-width: 250px;
}

.club-popup-header {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.club-popup-logo-col {
    flex-shrink: 0;
}

.club-popup-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.club-popup-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.club-popup-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 3px 0;
}

.club-popup-location {
    font-size: 13px;
    color: #666;
}

.club-popup-contact {
    font-size: 13px;
    margin-bottom: 10px;
}

.club-popup-contact div {
    margin-bottom: 3px;
}

.club-popup-contact a {
    color: #3498db;
    text-decoration: none;
}

.club-popup-contact a:hover {
    text-decoration: underline;
}

.club-popup-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.club-popup-socials a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.club-popup-socials a:hover {
    color: #3498db;
}

/* Cluster styles */
.marker-cluster-small {
    background-color: rgba(52, 152, 219, 0.6);
}

.marker-cluster-small div {
    background-color: rgba(52, 152, 219, 0.8);
}

.marker-cluster-medium {
    background-color: rgba(41, 128, 185, 0.6);
}

.marker-cluster-medium div {
    background-color: rgba(41, 128, 185, 0.8);
}

.marker-cluster-large {
    background-color: rgba(44, 62, 80, 0.6);
}

.marker-cluster-large div {
    background-color: rgba(44, 62, 80, 0.8);
}

.marker-cluster {
    background-clip: padding-box;
}

.marker-cluster div {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: #fff;
    line-height: 30px;
}

.marker-cluster span {
    line-height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .club-map {
        height: 400px;
    }
    
    .club-popup {
        min-width: 200px;
    }
}
