/* Public styles for Lokasi Best Church Plugin Shortcode */

.lbc-lokasi-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lbc-lokasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lbc-lokasi-card {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lbc-lokasi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.lbc-lokasi-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.lbc-lokasi-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbc-lokasi-title::before {
    content: "📍";
    font-size: 18px;
}

.lbc-city-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lbc-lokasi-details {
    margin: 15px 0;
}

.lbc-detail-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lbc-detail-label {
    font-weight: 600;
    color: #34495e;
    min-width: 80px;
    font-size: 14px;
}

.lbc-detail-value {
    color: #2c3e50;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.lbc-timezone {
    background: #e8f4fd;
    color: #1e88e5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.lbc-jadwal-section {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

.lbc-jadwal-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lbc-jadwal-title::before {
    content: "⏰";
    font-size: 14px;
}

.lbc-jadwal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lbc-jadwal-item {
    padding: 4px 0;
    color: #495057;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.lbc-jadwal-item:last-child {
    border-bottom: none;
}

.lbc-pic-section {
    margin: 15px 0;
    padding: 15px;
    background: #fff8e1;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.lbc-pic-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lbc-pic-title::before {
    content: "👤";
    font-size: 14px;
}

.lbc-pic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lbc-pic-item {
    padding: 6px 0;
    color: #495057;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lbc-pic-item:last-child {
    border-bottom: none;
}

.lbc-pic-name {
    font-weight: 500;
    color: #2c3e50;
}

.lbc-pic-contact {
    color: #6c757d;
    font-size: 12px;
}

.lbc-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.lbc-total-count {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 6px;
    color: #1565c0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lbc-lokasi-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lbc-lokasi-card {
        padding: 15px;
    }
    
    .lbc-lokasi-title {
        font-size: 18px;
    }
    
    .lbc-detail-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .lbc-detail-label {
        min-width: auto;
    }
    
    .lbc-pic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .lbc-lokasi-container {
        margin: 10px 0;
    }
    
    .lbc-lokasi-card {
        padding: 12px;
    }
    
    .lbc-jadwal-section,
    .lbc-pic-section {
        padding: 12px;
    }
}