/* AEROHELI Standorte - Frontend Map Styles */
.ahs-map-wrapper {
    background: #1a2332;
    overflow: hidden;
}
.ahs-map { z-index: 1; }
.ahs-heli-icon { background: transparent; border: 0; }

/* Logo-Marker: weißer Kreis mit Schatten, Logo zentriert */
.ahs-logo-marker-wrapper { background: transparent; border: 0; }
.ahs-logo-marker {
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 10px rgba( 0, 0, 0, 0.35 );
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ahs-logo-marker img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.ahs-logo-marker-wrapper:hover .ahs-logo-marker {
    transform: scale( 1.08 );
    box-shadow: 0 5px 14px rgba( 0, 0, 0, 0.45 );
}

/* Zoom-Hinweis Overlay (zentriert über der Karte) */
.ahs-scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% ) scale( 0.96 );
    background: rgba( 10, 14, 20, 0.86 );
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 22px;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba( 0, 0, 0, 0.35 );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 999;
    white-space: nowrap;
}
.ahs-scroll-hint.is-visible {
    opacity: 1;
    transform: translate( -50%, -50% ) scale( 1 );
}

/* Popup-Stile */
.ahs-leaflet-popup .leaflet-popup-content-wrapper {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 0;
}
.ahs-leaflet-popup .leaflet-popup-content {
    margin: 18px 22px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #0a0e14;
}
.ahs-leaflet-popup .leaflet-popup-tip { background: #ffffff; }
.ahs-popup-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8102e;
    margin-bottom: 4px;
}
.ahs-popup-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
    color: #0a0e14;
}
.ahs-popup-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #5a6470;
    margin: 0 0 8px 0;
}
.ahs-popup-phone, .ahs-popup-email {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    margin: 4px 0;
}
.ahs-popup-phone a, .ahs-popup-email a {
    color: #c8102e;
    text-decoration: none;
}
.ahs-popup-phone a:hover, .ahs-popup-email a:hover {
    color: #e63946;
    text-decoration: underline;
}
