/**
 * Estepona.eu - Zonas View Stylesheet
 * Estilos visuales premium para el visor de áreas geográficas y listado de puntos
 */

.zona-banner {
    position: relative;
    background: linear-gradient(135deg, var(--area-banner-bg, rgba(59, 130, 246, 0.86)) 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.zona-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.banner-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    pointer-events: none;
}
.premium-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.premium-card:hover {
    transform: translateY(-4px);
    border-color: var(--area-hover-border, rgba(59, 130, 246, 0.33)) !important;
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.4);
}
.poi-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zone-map-container {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
@media (max-width: 992px) {
    .zone-map-container {
        height: 350px;
        margin-bottom: 2rem;
    }
}
/* Style overrides for Leaflet tooltip & popup */
.premium-leaflet-popup .leaflet-popup-content-wrapper {
    background: #1e293b !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: white !important;
    border-radius: 12px !important;
}
.premium-leaflet-popup .leaflet-popup-tip {
    background: #1e293b !important;
}
